Message Boards Message Boards

0
|
4775 Views
|
1 Reply
|
0 Total Likes
View groups...
Share
Share this post:

Find the intersection points' of InterPloatFunction and DefiningFun?

Posted 4 years ago

Hi, I have plotted my functions but unable to find their intersection values. Is there any command to find them? my functions and points I want to find

Thanks

POSTED BY: Elif Özçelik
Posted 4 years ago

Depending on your functions, you may be able to use Solve or NSolve or Reduce. Simple example

sol = Solve[x == Cos[x], x, Reals] // N
solX = x /. sol // First
solY = Cos[solX] (* same as solX *)

Plot[{x, Cos[x]}, {x, 0, Pi/2}, 
 Epilog -> {Red, PointSize[Large], Point[{solX, solY}]}]

enter image description here

POSTED BY: Rohit Namjoshi
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract