Given that a, b, and c are positive integers, solve the following equation. a!b! = a! + b! + c!
Find the value of a + b + c
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.
We can assume a ≤ b
a = 1 : b ! = 1 + b ! + c ! - no solutions
a = 2 : 2 b ! = 2 + b ! + c ! ⇒ b ! = 2 + c ! - no solutions
For a ≥ 3 : if c ≤ b then a ! + b ! + c ! ≤ 3 b ! < a ! b ! - therefore b < c
Let p ( n ) = k be the integer value n = 2 k ( 2 m − 1 ) for some positive integer m
when p ( a ! ) < p ( b ! ) we have
p ( a ! b ! ) ≥ 2 p ( a ! ) and p ( a ! + b ! + c ! ) = p ( a ! ) ⇒ no solutions for b > a + 1
when b = a + 1 :
a ! ( a + 1 ) ! = a ! + ( a + 1 ) ! + c ! ⇒ a ! divided by ( a + 1 ) ! - no solutions
finally when b = a : ( a ! ) 2 = 2 a ! + c ! ⇒ a ! = 2 + a ! c !
if c ≥ a + 3 , a ! ≡ 0 ( m o d 3 ) and 2 + a ! c ! ≡ 2 ( m o d 3 ) - no solutions
if c = a + 2 - either 2 + a ! c ! ≡ 2 ( m o d 3 ) or 2 + a ! c ! ≡ 1 ( m o d 3 ) - no solutions
the only possibility left: a = b , c = a + 1
a ! ⋅ a ! = 2 a ! + ( a + 1 ) ! ⇒ a ! = 2 + a + 1 = a + 3 ⇒
a = b = 3 , c = 4 ⇒ a + b + c = 1 0
hm... was it author's solution BTW? :-)