Post Reply 
How solve
08-09-2017, 05:52 AM
Post: #6
RE: How solve
You can help solve by rewriting the system as a rational system
Code:
solve([(1-x*t) = (100/z),(1-x*t^2) = (150/z),(1-x*t^3) = (250/z)],[x,t,z])
then
Code:
solve(e^(-50*y)=t,y)
fsolve also works with a real starting point
Code:
fsolve([(1-x*e^(-50*y)) = (100/z),(1-x*e^(-100*y)) = (150/z),(1-x*e^(-150*y)) = (250/z)],[x,y,z],[-0.1,-0.1,0.1])
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
How solve - yingwuluo - 08-08-2017, 03:48 AM
RE: How solve - ettlz - 08-08-2017, 03:05 PM
RE: How solve - AlexFekken - 08-09-2017, 01:52 AM
RE: How solve - Helge Gabert - 08-08-2017, 03:10 PM
RE: How solve - yingwuluo - 08-09-2017, 03:26 AM
RE: How solve - parisse - 08-09-2017 05:52 AM
RE: How solve - yingwuluo - 08-09-2017, 09:14 AM
RE: How solve - Helge Gabert - 08-09-2017, 01:58 PM
RE: How solve - yingwuluo - 08-09-2017, 03:03 PM
RE: How solve - Arno K - 08-09-2017, 04:00 PM
RE: How solve - yingwuluo - 08-09-2017, 09:34 PM



User(s) browsing this thread: 2 Guest(s)