Group Abstract Group Abstract

Message Boards Message Boards

0
|
8.1K Views
|
4 Replies
|
0 Total Likes
View groups...
Share
Share this post:

Find a point on a plot?

Posted 8 years ago

I'm having trouble locating a point of a graph for example my question is plot f(x) = sinx which I was able to do but the next question is find f(Pi/ 6) which I am having trouble finding this point on the graph using mathematica. Please help

POSTED BY: Lexie Tutwiler
4 Replies
Posted 8 years ago

Use Plot and Epilog:

f[x_] := Sin[x]; Plot[f[x], {x, 0, Pi/4}, Epilog -> {PointSize[Medium], Point[{Pi/6, f[Pi/6]}]}]

Have fun!

POSTED BY: Mariusz Iwaniuk

The point is:

pt={Pi/6,f[Pi/6]}

It can be plotted with:

Point[pt]

Or probably:

Graphics[Point[pt]]
Posted 8 years ago

Thank you so much!

POSTED BY: Lexie Tutwiler
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard
Be respectful. Review our Community Guidelines to understand your role and responsibilities. Community Terms of Use