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
Answer:
A it is 10% higher than the theoretical probability
Step-by-step explanation:
Out of a single week it's 2/7. Out of a month it'd be 8/30 with only 30 days in a month. I hope this helps.
Answer:
Set of all real numbers
Step-by-step explanation:
When we talk of domain, we mean the possible values of x that the equation can take without being undefined
So x-values that makes the equation defined are the domain of the graph
From the diagram, we can see that the graph extends from negative infinity to positive infinity
What this mean is that the possible values here come from the top right and extends to the left
So this means that the range of possible values are the set of all real numbers