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
Step-by-step explanation:
- 1 plain chocolate and 1milk chocolate
- 1 plain chocolate and 1 white chocolate
- 1 milk chocolate and 1 white chocolate
<h3>we have to it like that only right??</h3>
Supplementary angles add up to 180 degrees.
so if one angle is 60 degrees, then the other angle is (180 - 60) = 120
Answer:
(2, 1)
Step-by-step explanation:
The best way to do this to avoid tedious fractions is to use the addition method (sometimes called the elimination method). We will work to eliminate one of the variables. Since the y values are smaller, let's work to get rid of those. That means we have to have a positive and a negative of the same number so they cancel each other out. We have a 2y and a 3y. The LCM of those numbers is 6, so we will multiply the first equation by a 3 and the second one by a 2. BUT they have to cancel out, so one of those multipliers will have to be negative. I made the 2 negative. Multiplying in the 3 and the -2:
3(-9x + 2y = -16)--> -27x + 6y = -48
-2(19x + 3y = 41)--> -38x - 6y = -82
Now you can see that the 6y and the -6y cancel each other out, leaving us to do the addition of what's left:
-65x = -130 so
x = 2
Now we will go back to either one of the original equations and sub in a 2 for x to solve for y:
19(2) + 3y = 41 so
38 + 3y = 41 and
3y = 3. Therefore,
y = 1
The solution set then is (2, 1)