Answer:
f(n)=f(n-1)+f(n-2)
f(1)=1x
f(2)=1x
Step-by-step explanation:
This is the fibonacci sequence with each term times x.
Notice, you are adding the previous two terms to get the third term per consecutive triples of the sequence.
That is:
1x+1x=2x
1x+2x=3x
2x+3x=5x
3x+5x=8x
So since we need the two terms before the third per each consecutive triple in the sequence, our recursive definition must include two terms of the sequence. People normally go with the first two.
f(1)=1x since first term of f is 1x
f(2)=1x since second term of f is 1x
Yes, I'm naming the sequence f.
So I said a third term in a consecutive triple of the sequence is equal to the sum of it's two prior terms. Example, f(3)=f(2)+f(1) and f(4)=f(3)+f(2) and so on...
Note, the term before the nth term is the (n-1)th term and the term before the (n-1)th term is the (n-2)th term. Just like before the 15th term you have the (15-1)th term and before that one you have the (15-2)th term. That example simplified means before the 15th term you have the 14th and then the 13th.
So in general f(n)=f(n-1)+f(n-2).
So the full recursive definition is:
f(n)=f(n-1)+f(n-2)
f(1)=1x
f(2)=1x
Answer:
49.735919716217
Step-by-step explanation:
Area =
C2 / 4π
Answer:
(4,5)
Step-by-step explanation:
Initial location of Joshua in the shopping mall is expressed according to the coordinate (12, -5)
If he undergoes a translation of 8 steps to the left and 10 steps upwards, this means that he moves 8 steps towards the negative x axis and 10 steps towards the positive y axis. The new coordinate will be gotten by adding the translation (-8, 10) to the initial coordinate as shown
New position = (12, -5) + (-8,10)
New position = (12-8, -5+10)
New position = (4, 5)
Hence the coordinates that corresponds to the location of the ground floor when undergoing a translation of 8 steps to the left and 10 steps upwards will be (4,5)
I think is A but not to sure
Answer:
x = 5
Step-by-step explanation:
3x - 7 + 4x = 28
Combine like terms
7x -7 = 28
Add 7 to each side
7x - 7 +7 = 28+7
7x = 35
Divide each side by 7
7x/7 = 35/7
x = 5