Difference between revisions of "1983 AIME Problems/Problem 5"
Line 1: | Line 1: | ||
== Problem == | == Problem == | ||
+ | Suppose that the sum of the squares of two complex numbers <math>x</math> and <math>y</math> is <math>7</math> and the sum of the cubes is <math>10</math>. What is the largest real value of <math>x + y</math> can have? | ||
== Solution == | == Solution == | ||
+ | The best way to solve this problem seems to be by [[brute force]]. | ||
+ | |||
+ | <math>w^2+z^2=(w+z)^2-2wz=7</math> and | ||
+ | <math>w^3+z^3=(w+z)(w^2+z^2)-wz(w+z)=(w+z)(7)-wz(w+z)=(7-wz)(w+z)=10</math> | ||
+ | |||
+ | Because we are only left with <math>w+z</math> and <math>wz</math>, [[substitution]] won't be too bad. Let <math>x=w+z</math> and <math>y=wz</math>. | ||
+ | |||
+ | We get <math>x^2-2y=7</math> and | ||
+ | <math>x(7-y)=10</math> | ||
+ | |||
+ | Because we want the largest possible <math>x</math>, let's find an expression for <math>y</math> in terms of <math>x</math>. <math>x^2-7=2y \implies y=\frac{x^2-7}{2}</math>. | ||
+ | |||
+ | Substituting, <math>x^3-21x+20=0</math>. Factored, <math>(x-1)(x+5)(x-4)=0</math> | ||
+ | |||
+ | The largest possible solution is therefore <math>4</math>. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | * [[1983 AIME Problems/Problem 4|Previous Problem]] | ||
+ | * [[1983 AIME Problems/Problem 6|Next Problem]] | ||
+ | * [[1983 AIME Problems|Back to Exam]] | ||
== See also == | == See also == | ||
− | * [[ | + | * [[AIME Problems and Solutions]] |
+ | * [[American Invitational Mathematics Examination]] | ||
+ | * [[Mathematics competition resources]] | ||
+ | |||
+ | [[Category:Intermediate Complex Numbers Problems]] |
Revision as of 22:59, 23 July 2006
Problem
Suppose that the sum of the squares of two complex numbers and is and the sum of the cubes is . What is the largest real value of can have?
Solution
The best way to solve this problem seems to be by brute force.
and
Because we are only left with and , substitution won't be too bad. Let and .
We get and
Because we want the largest possible , let's find an expression for in terms of . .
Substituting, . Factored,
The largest possible solution is therefore .