Here we have 2 variables we need to calculate:
x - how many Volvos Jane sold
y - how many Volvos Melissa sold
We write system of equations:
x = 8*y
x - y = 35
------------
8y - y = 35
7y = 35
y = 5
x = 8*5 = 40
Jane sold 40 cars.
Answer:
C. 10–15, 15–20, 20–25, 25–30, 30–35
Step-by-step explanation:
I did it on the calculator and the answer is 7.77777777778
Answer:
0.2x + y -6
Step-by-step explanation:
A and b are already there but to get c you just have to move 6 to the other side by subtracting it from the right side and adding it to the end of the left side.
Answer:
75
Step-by-step explanation:
f(1) = 7
f(n) = 3f(n-1) + 3
So what you are trying to do here is find the recursive value (that's what it is called) for f(n). Computers love this sort of thing, but we humans have to do it slowly and carefully.
So let's try f(2)
That means that f(2) = 3*f(n-1) + 3
but if f(2) is used it means that you have to know f(2-1) which is just f(1) and we know that.
so f(2) = 3*f(1)+3
f(2) = 3*7 + 3
f(2) = 21 + 3
f(2) = 24
Now do it again. We now know F(2), so we should be able to find f(3)
f(3) = 3*f(3 - 1) + 3
f(3) = 3*f(2) + 3 We know that f(2) = 24
f(3) = 3* 24 + 3
f(3) = 72 + 3
f(3) = 75