Message Boards Message Boards

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

Find a point on a plot?

Posted 6 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

The point is:

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

It can be plotted with:

Point[pt]

Or probably:

Graphics[Point[pt]]

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
Posted 6 years ago

Thank you so much!

POSTED BY: Lexie Tutwiler
Posted 6 years ago

Here is the Mariusz's plot from 0 to 2Pi with the point.

Attachments:
POSTED BY: Roger Wells
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