![]() |
Maple help
How would I go on solving a trigonometric solution in a given interval? We're working on revising local extremes in differential calculus, so I'd, for instance like the solution to
f'(x) := x-> cos(x)+sin(x) f'(x) > 0 within the interval [0; 2π] The symbol for f' is fm I've tried the Ti89 syntax with Maple's solve function, like solve(fm(x) > 0, x) | 0 < x < 2π But it doesn't work. Is there a parameter for solve that would give me solutions within a given interval? |
Hi :-) I should know how to do this but I can't remember. I don't think this is exactly what you are looking for:
> restart; > f1:= x ->cos(x) + sin(x); > plot(f1(x), x = 0..3*Pi, color = black); > fsolve(f1(x)=0 , x=0..3); 2.356194490 > fsolve(f1(x)=0 , x=4..7); 5.497787144 Basically, look at the plot and selecting the limits for fsolve, to "guide it in" to the solution you want. Gareth |
Exactly what I was looking for! Thank you!
|
Woohoo, no problem :-)
Gareth |
All times are GMT +1. The time now is 06:16 AM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO 3.6.0 PL2