Algebra SUCKS !!
\[\large Let\] \[\large x^3-y^2=z^5\] \[\large x+z=y\] where x,y and z are all integers less than 19. Find x+y+z.
@ganeshie8 and @PeterPan
I don't know this stuff. :|
You can always make stuff up, say, 2? :)
@ganeshie8 any idea?
The only thing I think might be worth mentioning is that: x+y+z=2y That might be useful, but honestly I don't know.
Just let z = 0 and x = 1 and everything falls into place XD
Seems good enough to me.
@eliassaab and @CGGURUMANJUNATH
x+y+z<= 57
There is only one situation to achieve that x=7 y=10 z=3 so x+y+z=20
if you assume all less than 19
z^5<6498 z<=5
actually x+y+z = 2y < 2*19 = 38 so x+y+z < 38 @ikram002p
Here is the program in Mathematica that gives you the answer Clear[x, y, z] Q = {}; For[ x = 1, x < 19, x++, For[ z = 1, z < 19, z++, y = x + z; If [x^3 - y^2 == z^5, Q = Append[Q, {x, y, z}]]]] Q
wow ! u have something working !xD
typo :o
If you add 0, then here are the three solutions {{0, 0, 0}, {1, 1, 0}, {7, 10, 3}}
Clear[x, y, z] Q = {}; For[ x = 0, x < 19, x++, For[ z = 0, z < 19, z++, y = x + z; If [x^3 - y^2 == z^5, Q = Append[Q, {x, y, z}]]]] Q
@eliassaab can you please explain me how do you get your answer?
The computer found them. I only wrote the script.
what is the site
Even, when doing by hand, you have to do trial and error after you narrow down the possibilitiess
The site is my computer and Mathematica working on it
(0, -1, -1) is one solution mayank, we need to find x+y+z in in all integers or only positive ?
if it is all integers, then clearly x+y+z will not have an unique answer
Im the smartest man alive jk lol
I found the same answer, if all are less than 1000
@ganeshie8 explain your solution
ganesh telling u is the solution in all integer or in +ve
I am asking if the domain for x, y, z is < 19 or only the positive integers < 19 ?
x+y-z<19 x+y+z<38 z<=5 x<=7
"Teacher I made this program since there are only 19^3 possibilities..."
i cant see any method exept trial :o
me neither, wid ur bounds we can go trial and error i feel
Fun fact, if you change thist equation to lower each term by 1 degree to: x^2-y=z^4 Then you get: x=2, y=3, z=1 so then you have x+y+z=6. whooo...
can you explain? @Kainui
but it leads to nothing lol
@ikram002p do you know how to solve it?
trials method see eliassaab methos is like this set x=0,y=0,z=0 s,t all x,y,z<19 then check if y=x+z then x^3-y^2=z^5 and keep going
As I said before the following program spit them all Clear[x, y, z] Q = {}; For[ x = 0, x < 19, x++, For[ z = 0, z < 19, z++, y = x + z; If [x^3 - y^2 == z^5, Q = Append[Q, {x, y, z}]]]] Q and here are all the solutions between and including zero to 19 {{0, 0, 0}, {1, 1, 0}, {7, 10, 3}} When you want to do trial do it by the machine. It is faster.
Join our real-time social learning platform and learn together with your friends!