SOLUTION: how many distinct solutions (a,b,c) are there to the equation a^2+bc=b^2 if a,b,and c are integers between 1 and 5 inclusive?

Algebra.Com
Question 1178383: how many distinct solutions (a,b,c) are there to the equation a^2+bc=b^2 if a,b,and c are integers between 1 and 5 inclusive?
Answer by math_helper(2461)   (Show Source): You can put this solution on YOUR website!
(2,4,3) is the only solution I found

I re-arranged the equation to and then used this Perl script to do a brute-force check (a,b,c)=($i,$j,$k):

perl -e 'for($i=1;$i<=5;$i++) { for($j=1;$j<=5;$j++) { for ($k=1;$k<=5;$k++) { if (($j-$i)*($j+$i) == ($j)*($k)) { print "$i $j $k\n"; } } } }'

RELATED QUESTIONS

If a^2 x b^3 x c^4 = 648 000, where a, b, and c are distinct positive integers greater... (answered by math_tutor2020)
If {{{ a^2b^3c^4=648000 }}}, where a, b and c are distinct positive integers greater than (answered by greenestamps,math_tutor2020)
How many solutions are there to the equation {{{2/(x+1)}}}+{{{4/(x^2-1)}}}=1 A) 0... (answered by Boreal)
If {{{ ab^2c^3=3600 }}}, where a, b and c are distinct positive integers greater than 1,... (answered by greenestamps,stanbon)
If {{{ ab^2c^3 = 3600 }}}, where a, b and c are distinct positive integers greater than... (answered by ikleyn)
If {{{ab^2c^4=2430000}}}, where a, b and c are distinct positive integers greater than 1, (answered by greenestamps,ikleyn)
how many solutions are there to |x+2| = 14 a. 1 b. 2 c. -16 d. none of the... (answered by mducky2)
How many solutions are there to the equation below? 6x + 8 - 2x(7 - 2) = 2(6 + 1) (answered by ReadingBoosters)
Find the value of x if A, B, and C are collinear points and B is between A and C.... (answered by jhunjiro)