Find a x 5 + b y 5 if the real numbers a , b , x , and y satisfy the equations a x + b y = 3 a x 2 + b y 2 = 7 a x 3 + b y 3 = 1 6 a x 4 + b y 4 = 4 2
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Maybe Parth said all this, and I missed some of it. Here is how I solved it: Starting with: a x 3 + b y 3 = 1 6 , substitute for a x 2 and b y 2 from previous equation.
x ( 7 − b y 2 ) + y ( 7 − a x 2 ) = 1 6
7 ( x + y ) − ( a x + b y ) x y = 1 6
7 ( x + y ) − 3 x y = 1 6
Performing similar math on fourth equation yields: x ( 1 6 − b y 3 ) + y ( 1 6 − a x 3 ) = 4 2
1 6 ( x + y ) − ( a x 2 + b y 2 ) x y = 4 2
1 6 ( x + y ) − 7 x y = 4 2
This is now two linear equations in two unknowns. Let S = x + y , let T = x y . Now you have the two equations that Parth solved.
7 S − 3 T = 1 6
1 6 S − 7 T = 4 2
Solve for S and T as above, and use same pattern of recurrence to calculate final answer.
Problem Loading...
Note Loading...
Set Loading...
A recurrence of the form T n = A T n − 1 + B T n − 2 will have the closed form T n = a x n + b y n , where x , y are the values of the starting term that make the sequence geometric, and a , b are the appropriately chosen constants such that those special starting terms linearly combine to form the actual starting terms.
Suppose we have such a recurrence with T 1 = 3 and T 2 = 7 . Then T 3 = a x 3 + b y 3 = 1 6 = 7 A + 3 B , and T 4 = a x 4 + b y 4 = 4 2 = 1 6 A + 7 B .
Solving these simultaneous equations for A and B , we see that A = − 1 4 and B = 3 8 . So, a x 5 + b y 5 = T 5 = − 1 4 ( 4 2 ) + 3 8 ( 1 6 ) = 2 0