Find the sum of all positive integers x , y , z such that x ≤ y ≤ z and x y + y z = z x
Details and Assumptions:
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.
It seems like you're assuming x = 1 here? I mean, if z = 2 and x = 5 then there are plenty of values of y such that y z < z x .
@Surya Prakash please post a solution!
(0,1,1) is also a solution
Log in to reply
Is 0 positive. Please read the question carefully.
there is a proof for this theorem but here its indirect application is used
Whats the name of the theorem?
Problem Loading...
Note Loading...
Set Loading...
For the solution, you need y^z to be < z^x. Therefore if z = 2 you're looking for a square number < 2, if z = 3 a cube number < 3 and so on. With any value of z > 1 the only possible y value is 1 ( it's the only square number < 2 and the only cube number < 3 etc. ) Since y = 1, x = 1, therefore z = 2. Therefore ( 1, 1, 2 ) is the only solution.