All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Numbers
Consider Prime Ratios, Get Integers (Posted on 2023-02-04) Difficulty: 3 of 5
Find all possible triplet(s) (p, q, r) of prime numbers such that, each of:

(p2 + 2q)/(q + r), (q2 + 9r)/(r + p), and
(r2 + 3p)/(p + q)

is a positive integer.

Prove that no further triplet is possible in conformity with the given conditions.

Note: Adapted from a problem appearing in a shortlist of Junior Balkan Mathematical Olympiad.

*** Computer program assisted solutions are welcome, but a semi-analytic methodology, that is: hand calculator and p&p, is preferred.

See The Solution Submitted by K Sengupta    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts computer findings | Comment 2 of 4 |
pr=primes(nthprime(900));
for pp=1:900
  for qq=1:900
    for rr=1:900
      p=pr(pp);q=pr(qq);r=pr(rr);
      a=(p^2+2*q)/(q+r);
      if a==round(a)
        b=(q^2+9*r)/(r+p);
        if b==round(b)
          c=(r^2+3*p)/(p+q);
          if c==round(c)
            disp([p,q,r])
            disp([a b c])
          end
        end
      end
    end
  end
end
nthprime(900)


finds only

2     3     7 as the primes
1     8    11 as the three fractions (resulting integers)

and reports having tried up to the 900th prime (6997) for each of p, q and r.

  Posted by Charlie on 2023-02-04 09:54:58
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (10)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information