Difference between revisions of "1980 AHSME Problems/Problem 29"
Mathgeek2006 (talk | contribs) m (→Problem) |
J314andrews (talk | contribs) (→Solution 1 (Sum of Squares)) |
||
(9 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
== Problem == | == Problem == | ||
− | How many ordered triples (x,y,z) of integers satisfy the system of equations below? | + | How many ordered triples <math>(x,y,z)</math> of integers satisfy the system of equations below? |
− | <cmath>\begin{ | + | <cmath> |
+ | \begin{align*} | ||
+ | x^2 - 3xy + 2y^2 - z^2 &= 31 \\ | ||
+ | -x^2 + 6yz + 2z^2 &= 44 \\ | ||
+ | x^2 + xy + 8z^2 &= 100 | ||
+ | \end{align*} | ||
+ | </cmath> | ||
− | <math>\text{(A)} \ 0 \qquad | + | <math>\text{(A)}\ 0 \qquad \text{(B)}\ 1 \qquad \text{(C)}\ 2 \qquad \text{(D)}\ \text{a finite number greater than 2}\qquad \text{(E)}\ \text{infinitely many}</math> |
− | \text{(B)} \ 1 \qquad | ||
− | \text{(C)} \ 2 \qquad | ||
− | \text{(D)}\ \text{a finite number greater than 2}\qquad | ||
− | \text{(E)}\ \text{infinitely many} </math> | ||
− | == Solution == | + | == Solution 1 (Sum of Squares) == |
− | + | We are considering the sum of three equations: | |
− | == See | + | <cmath> |
+ | x^2 - 2xy + 2y^2 + 6yz + 9z^2 = (x - y)^2 + (y + 3z)^2 = 175. | ||
+ | </cmath> | ||
+ | |||
+ | Since <math>x, y, z</math> are integers, this implies that <math>175</math> can be written as the sum of two squares, i.e., | ||
+ | |||
+ | <cmath> | ||
+ | 175 = a^2 + b^2, | ||
+ | </cmath> | ||
+ | |||
+ | where <math>a</math> and <math>b</math> are integers. | ||
+ | |||
+ | However, <math>175 \equiv 3\ (\mathrm{mod}\ 4)</math>, but <math>a^2</math> and <math>b^2</math> must each be congruent to either <math>0</math> or <math>1 (\mathrm{mod}\ 4)</math>. So this equation, and therefore this system, has <math>0</math> integer solutions. <math>\fbox{(A)}</math> | ||
+ | |||
+ | [[User:Wwei.yu|Wwei.yu]] ([[User talk:Wwei.yu|talk]]) 22:09, 28 March 2020 (EDT) | ||
+ | |||
+ | == Solution 2 (Eliminate Cross Terms) == | ||
+ | |||
+ | First, to eliminate the <math>xy</math> term, multiply both sides of the third equation by <math>3</math> to get <math>3x^2 + 3xy + 24z^2 = 300</math>, and then add it to the first equation to get <math>4x^2 + 2yz + 23z^2 = 331</math>. | ||
+ | |||
+ | Next, to eliminate the <math>yz</math> term, multiply both sides of the new equation by <math>-3</math> to get <math>-12x^2 - 6yz - 69z^2 = -993</math>, and then add it to the second equation to get <math>-13x^2 - 67z^2 = -949</math>. | ||
+ | |||
+ | This equation can be rearranged to get <math>67z^2 = 949-13x^2 = 13(73-x^2)</math>. Since <math>67</math> is not divisible by <math>13</math>, <math>z</math> must be divisible by <math>13</math> and there exists an integer <math>n</math> such that <math>z = 13n</math>. Substituting <math>z = 13n</math> and dividing both sides of this equation by <math>13</math> yields <math>871n^2 = 73 - x^2</math>. So <math>871n^2 \leq 73</math>, which is only true if <math>n = 0</math>. But <math>n = 0</math> would require <math>x^2 = 73</math>, which is impossible since <math>73</math> is not a perfect square. Therefore, this equation (and also this system) has <math>0</math> integer solutions. <math>\fbox{(A)}</math> | ||
+ | |||
+ | -j314andrews, based on solution by Farenhajt | ||
+ | |||
+ | == Solution 3 (Modular Arithmetic) == | ||
+ | |||
+ | Reducing the second equation mod <math>2</math> yields <math>x^2 \equiv 0\ (\mathrm{mod}\ 2)</math>. Therefore, <math>x \equiv 0\ (\mathrm{mod}\ 2)</math> and <math>x</math> is even. | ||
+ | |||
+ | Reducing the first equation mod <math>2</math> and substituting yields <math>z^2 \equiv 1\ (\mathrm{mod}\ 2)</math>. Therefore, <math>z \equiv 1\ (\mathrm{mod}\ 2)</math> and <math>z</math> is odd. | ||
+ | |||
+ | Since <math>x</math> is even, <math>x^2 \equiv 0\ (\mathrm{mod}\ 4)</math>, and since <math>z</math> is odd, <math>z^2 \equiv 1\ (\mathrm{mod}\ 4)</math>. Also <math>6z \equiv 2z \equiv 2\ (\mathrm{mod}\ 4)</math>. Reducing the second equation mod <math>4</math> and substituting yields <math>2y + 2 \equiv 0\ (\mathrm{mod}\ 4)</math>, so <math>y</math> is odd. | ||
+ | |||
+ | Reducing the third equation mod <math>4</math> and substituting yields <math>xy \equiv 0\ (\mathrm{mod}\ 4)</math>. Since <math>y</math> is odd, <math>x \equiv 0\ (\mathrm{mod}\ 4)</math>. | ||
+ | |||
+ | Since <math>y</math> is odd, <math>y^2 \equiv 1\ (\mathrm{mod}\ 4)</math>. Reducing the first equation mod <math>4</math> and substituting yields <math>1 \equiv 3\ (\mathrm{mod}\ 4)</math>, which is impossible. | ||
+ | |||
+ | Therefore, this system has <math>0</math> integer solutions. <math>\fbox{(A)}</math> | ||
+ | |||
+ | -j314andrews | ||
+ | |||
+ | == See Also == | ||
{{AHSME box|year=1980|num-b=28|num-a=30}} | {{AHSME box|year=1980|num-b=28|num-a=30}} | ||
+ | |||
+ | {{MAA Notice}} | ||
[[Category: Intermediate Algebra Problems]] | [[Category: Intermediate Algebra Problems]] | ||
− |
Latest revision as of 01:03, 26 June 2025
Contents
Problem
How many ordered triples of integers satisfy the system of equations below?
Solution 1 (Sum of Squares)
We are considering the sum of three equations:
Since are integers, this implies that
can be written as the sum of two squares, i.e.,
where and
are integers.
However, , but
and
must each be congruent to either
or
. So this equation, and therefore this system, has
integer solutions.
Wwei.yu (talk) 22:09, 28 March 2020 (EDT)
Solution 2 (Eliminate Cross Terms)
First, to eliminate the term, multiply both sides of the third equation by
to get
, and then add it to the first equation to get
.
Next, to eliminate the term, multiply both sides of the new equation by
to get
, and then add it to the second equation to get
.
This equation can be rearranged to get . Since
is not divisible by
,
must be divisible by
and there exists an integer
such that
. Substituting
and dividing both sides of this equation by
yields
. So
, which is only true if
. But
would require
, which is impossible since
is not a perfect square. Therefore, this equation (and also this system) has
integer solutions.
-j314andrews, based on solution by Farenhajt
Solution 3 (Modular Arithmetic)
Reducing the second equation mod yields
. Therefore,
and
is even.
Reducing the first equation mod and substituting yields
. Therefore,
and
is odd.
Since is even,
, and since
is odd,
. Also
. Reducing the second equation mod
and substituting yields
, so
is odd.
Reducing the third equation mod and substituting yields
. Since
is odd,
.
Since is odd,
. Reducing the first equation mod
and substituting yields
, which is impossible.
Therefore, this system has integer solutions.
-j314andrews
See Also
1980 AHSME (Problems • Answer Key • Resources) | ||
Preceded by Problem 28 |
Followed by Problem 30 | |
1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10 • 11 • 12 • 13 • 14 • 15 • 16 • 17 • 18 • 19 • 20 • 21 • 22 • 23 • 24 • 25 • 26 • 27 • 28 • 29 • 30 | ||
All AHSME Problems and Solutions |
These problems are copyrighted © by the Mathematical Association of America, as part of the American Mathematics Competitions.