Finding max and min values in Maple with fsolve

  • Context: Maple 
  • Thread starter Thread starter Spectre32
  • Start date Start date
  • Tags Tags
    Maple Max
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 3K views
Spectre32
Messages
136
Reaction score
0
Hey guys, I don't know if you can help me or not but i have a question dealing with maple. IT's asking me to find the MAX and Mins with my current function, and I've been trying everything. I differentiate it, and then use fsolve, but i can't get it to work. If anyone has an idea please help out.


Thanks
 
Physics news on Phys.org
Although its not elegant it gives you the max and min's of an expression f:

Code:
with(LinearAlgebra):
f := x^2 + 2*x + 1;
sol := [solve(diff(f,x)=0,x)]:
for i from 1 to Dimension(<sol>) do 
	y[i] := subs(x=sol[i],f): print([sol[i],y[i]]) 
end do:
 
Yeah i had my fuction set you f and then had something like this:

diff(f,t);
folve(f(t)=0,t);

Or something similar to that. I'm not at my maple computer so I'm trying to recall off the top of my head.
 
Yeh, but there's still saddle points to deal with. (2nd derivate check)
Look it up in a good calculus textbook and the write out the procedure in maple...