Positive Int Solns for Factorial Equation: a!b!=a!+b!+c!

  • Thread starter Thread starter FeDeX_LaTeX
  • Start date Start date
  • Tags Tags
    Factorial
AI Thread Summary
The discussion focuses on finding positive integer solutions for the equation a!b! = a! + b! + c!. One solution identified is (a = 3, b = 3, c = 4), with participants exploring various approaches to prove its uniqueness. They discuss the implications of the equation under different modulo conditions, particularly modulo 2 and 3, to draw conclusions about the values of a, b, and c. The conversation also touches on the assumption that a ≤ b without loss of generality and the application of the AM-GM inequality. Ultimately, the consensus is that (3, 3, 4) is the only solution, though proving this remains a challenge.
FeDeX_LaTeX
Science Advisor
Messages
436
Reaction score
13

Homework Statement


Find all positive integer solutions for a, b and c to the equation:

a!b! = a! + b! + c!

Homework Equations



n! = n(n-1)(n-2)...

The Attempt at a Solution



I'm not having much progress with this. I've tried rewriting it as

(a! - 1)(b! - 1) = c! + 1

and I've found one solution by observation (a = 3, b = 3, c = 4), but I'm not sure what to do. I've ruled out the case a = b = c (since putting that in gives you a! = 3, which has no integer solutions). I've tried comparing the sets of a and b and have tried pairing up numbers by multiplying them to give an element in the set of possible values of c, but this has not worked either, and given that a calculator is not allowed, it would take too long to compute all the possibilities.

A hint (but not a complete solution) would be appreciated here.

EDIT: I've noticed that the remaining solutions all involve a, b and c ≥ 5 (I think). I remembered that, for n > 5 is composite iff (n-1)! = 0 mod n, but I'm not sure how to apply this here?
 
Physics news on Phys.org
We can assume without loss of generalization that a\leq b.

Let's start by a subtle hint. What do you get if you look at that equation modulo 2, modulo 3, etc. ? Can you draw conclusions about c?
 
Well, I've shown that a, b and c cannot take on values 1 or 2 (by exhaustion), so we can say that a, b, c ≥ 3... so the equation is 0 modulo 2 and 0 modulo 3 since both sides are divisible by 3. If we re-arrange;

a! = \frac{b! + c!}{b! - 1}

Then since a, b, c ≥ 3 the top of the fraction is divisible by 3... but (b! - 1) = 2 mod 3.
 
OK, I'm not really sure how that shows anything...

Let's try in some other way:

a!b!=a!+b!+c!

What do you get mod a! ??
 
I couldn't do it by algebraic methods. I created a small program to find the values a,b and c. I got only one solution i.e 3,3,4 when i check the values of a,b and c from 1 to 20.
(Please someone rectify if i did something wrong.)
 
Pranav-Arora said:
I couldn't do it by algebraic methods. I created a small program to find the values a,b and c. I got only one solution i.e 3,3,4 when i check the values of a,b and c from 1 to 20.

That is indeed the only solution. But proving it is an interesting question. If you look at the right divisibility and modulo properties than you should be able to do it.
 
micromass said:
We can assume without loss of generalization that a\leq b.

Let's start by a subtle hint. What do you get if you look at that equation modulo 2, modulo 3, etc. ? Can you draw conclusions about c?

Why can you assume without loss of generalisation that a\leq b? I used AM-GM on a and b to get ab \leq \frac{a^2 + b^2}{3} but not sure where to go from there...

In mod a!, would it be correct to say that it shows that b \leq c? Also not too convinced of this...
 
Last edited:
FeDeX_LaTeX said:
Why can you assume without loss of generalisation that a\leq b?

Otherwise, you just switch a and b around. The situation is completely analogous.

I used AM-GM on a, b and c to get xy \leq \frac{x^2 + y^2}{3} but not sure where to go from there...

What are x and y?

In mod a!, would it be correct to say that it shows that b \leq c? Also not too convinced of this...

Not quite. What do you get if you look at the equation modulo a! ?
 
Sorry, by x and y I meant a and b, don't know why I used x and y. It's not important now though, I can see why we can assume a \leq b WLOG.

Well, the LHS is b! mod a! ... with the RHS, you get (2 + c!) \mod a! for the case a = b, but for the case b > a, you get the RHS to be (1 + c! + b(b-1)...(b-(a+1)) \mod a!, I think.

And the LHS in the case b > a is b! \mod a! OR a!*b(b-1)...(b - (a+1)) \mod a!?
 
Last edited:
  • #10
Isn't b!=0 (mod a!) ??
 
  • #11
How did you get the remainder to be 0...? What happened to the c?

I thought that if a = b then b \leq c as, for the case a = b, you get b! = (2 + c!) \mod a!, so b \leq c?
 
Back
Top