Ask your own question, for FREE!
Mathematics 11 Online
OpenStudy (mayankdevnani):

Algebra SUCKS !!

OpenStudy (mayankdevnani):

\[\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.

OpenStudy (mayankdevnani):

@ganeshie8 and @PeterPan

OpenStudy (anonymous):

I don't know this stuff. :|

OpenStudy (anonymous):

You can always make stuff up, say, 2? :)

OpenStudy (mayankdevnani):

@ganeshie8 any idea?

OpenStudy (kainui):

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.

OpenStudy (anonymous):

Just let z = 0 and x = 1 and everything falls into place XD

OpenStudy (kainui):

Seems good enough to me.

OpenStudy (mayankdevnani):

@eliassaab and @CGGURUMANJUNATH

OpenStudy (ikram002p):

x+y+z<= 57

OpenStudy (anonymous):

There is only one situation to achieve that x=7 y=10 z=3 so x+y+z=20

OpenStudy (anonymous):

if you assume all less than 19

OpenStudy (ikram002p):

z^5<6498 z<=5

ganeshie8 (ganeshie8):

actually x+y+z = 2y < 2*19 = 38 so x+y+z < 38 @ikram002p

OpenStudy (anonymous):

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

ganeshie8 (ganeshie8):

wow ! u have something working !xD

OpenStudy (ikram002p):

typo :o

OpenStudy (anonymous):

If you add 0, then here are the three solutions {{0, 0, 0}, {1, 1, 0}, {7, 10, 3}}

OpenStudy (anonymous):

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

OpenStudy (mayankdevnani):

@eliassaab can you please explain me how do you get your answer?

OpenStudy (anonymous):

The computer found them. I only wrote the script.

OpenStudy (mayankdevnani):

what is the site

OpenStudy (anonymous):

Even, when doing by hand, you have to do trial and error after you narrow down the possibilitiess

OpenStudy (anonymous):

The site is my computer and Mathematica working on it

ganeshie8 (ganeshie8):

(0, -1, -1) is one solution mayank, we need to find x+y+z in in all integers or only positive ?

ganeshie8 (ganeshie8):

if it is all integers, then clearly x+y+z will not have an unique answer

OpenStudy (anonymous):

Im the smartest man alive jk lol

OpenStudy (anonymous):

I found the same answer, if all are less than 1000

OpenStudy (mayankdevnani):

@ganeshie8 explain your solution

OpenStudy (ikram002p):

ganesh telling u is the solution in all integer or in +ve

ganeshie8 (ganeshie8):

I am asking if the domain for x, y, z is < 19 or only the positive integers < 19 ?

OpenStudy (ikram002p):

x+y-z<19 x+y+z<38 z<=5 x<=7

OpenStudy (kainui):

"Teacher I made this program since there are only 19^3 possibilities..."

OpenStudy (ikram002p):

i cant see any method exept trial :o

ganeshie8 (ganeshie8):

me neither, wid ur bounds we can go trial and error i feel

OpenStudy (kainui):

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...

OpenStudy (mayankdevnani):

can you explain? @Kainui

OpenStudy (ikram002p):

but it leads to nothing lol

OpenStudy (mayankdevnani):

@ikram002p do you know how to solve it?

OpenStudy (ikram002p):

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

OpenStudy (anonymous):

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.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!