SOLUTION: find two consecutive intergers such that the square of the smaller plus twice the larger is 50

Algebra ->  Quadratic Equations and Parabolas -> SOLUTION: find two consecutive intergers such that the square of the smaller plus twice the larger is 50      Log On


   



Question 305374: find two consecutive intergers such that the square of the smaller plus twice the larger is 50
Answer by Fombitz(32388) About Me  (Show Source):
You can put this solution on YOUR website!
N - first integer (smaller)
N%2B1 - next consecutive integer (larger)
.
.
.
N%5E2%2B2%28N%2B1%29=50
N%5E2%2B2N%2B2=50
N%5E2%2B2N-48=0
%28N%2B8%29%28N-6%29=0
Two solutions:
N%2B8=0
N=-8
.
.
.
N-6=0
N=6
.
.
.
The two integers are either (-8,-7) or (6,7).