Answer:
The number is 30.
Step-by-step explanation:
x/5+3=9
x/5=9-3
x/5=6
x=6*5
x=30
Step-by-step explanation:
We have to know that in order to solve for the volume of a rectangular prism, we have to use this formula: l * w * h. This stands for length multiplied by width multiplied by height.
<u>Step 1</u>
Let's look at the numbers we already have. The height of the prism is 4 feet and the width is 5 feet. When we multiply them together, we got 20 feet.
<u>Step 2</u>
The volume of this prism adds up to 150 square feet. To find the length of this prism, we have to divide 150 by 20.

Our final answer: l = 7.5 feet
We can check our answer by multiplying all the numbers together.
4 * 5* 7.5 = 150
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