MrBillDoesMath!
Answer: The dependent variable depends on another variable for its value. For example, if y = 2x, setting x = 1 forces y= 2.; setting x = 10, forces y =20. There are no other possibilities for y once x ids chosen. So y is the dependent variable and x is the independent one. You can pick values for the independent variable (x) but no so for the dependent one.
MrB
Answer:
Step-by-step explanation:
We are given the following in the question:
Let P be the number of professor and S be the student in a college.
According to the question:
There are 19 times as many students as professors.
We have to write an equation to show the given relationship between professors and students.

The above situation is the situation that represents the given relationship.
Answer:
Each shirt cost $<u>7</u> and each pair of shorts cost $<u>17</u> .
Step-by-step explanation:
let shirts be represented as x
let shorts be represented as y
Younger brother spent $79 on 4 new shirts and 3 pairs of shorts.
4 x + 3 y = $79 .......equation 1
Older brother purchased 7 new shirts and 8 pairs of shorts and paid a total of $185.
7 x + 8 y = $185 .......equation 2
multiply equation 1 by 7 and equation 2 by -4 and add both equations to get the value of y.
7 × (4 x + 3 y = $79) ⇒ +28 x + 21 y = $553
-4 × (7 x + 8 y = $185) ⇒ <u> -28 x - 32 y = - $740</u>
0 - 11 y = - $187 ⇒ -11 y = - $187
y =
⇒ y = $17
shorts = y = $17
put value of y in equation 1
4 x + 3 ( $17 ) = $79 ⇒ 4x + $51 = $79 ⇒ 4x = $79 - $51
4x = $28 ⇒ x =
⇒ x = $7
Shirts = x = $7
Answer:
y > (1/3)x - 3.
Step-by-step explanation:
The graph of a line can be written in y = mx + b form where b is the y-intercept and m is the slope.
In the image, the slope of the graph from the given points is 1/3.
In the image, the y-intercept is -3.
Therefore, the line is y = (1/3)x -3. However, we aren’t done yet! This is an inequality, not an equation!
We see the line isn’t dotted, so that means it must be > or <.
We substitute the point (0,0) into the line equation we got and find that 0 > (1/3)(0) - 3 = -3. Since (0,0) is part of the inequality, we have that y > (1/3)x - 3.
I hope this helps! :)
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}