General Discussion Undecided where to post - do it here. |
Reply to Thread New Thread |
![]() |
#1 |
|
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? |
![]() |
![]() |
#2 |
|
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 |
![]() |
![]() |
#3 |
|
|
![]() |
Reply to Thread New Thread |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|