Ask Your Question
1

how to plot vertical lines

asked 2017-08-23 19:26:39 +0200

anonymous user

Anonymous

how do I plot a vertical line such as x = 3, together with another graph, such as y = x^3?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2017-08-23 22:38:04 +0200

fidbc gravatar image

If P and Q are plots then you may display them together via P+Q.

For the vertical line you may use implicit_plot or just draw it manually via line.

var('x,y')
# plot line x=3
P = implicit_plot(x==3,(x,2,4),(y,-1,5))

# manualy draw line x=5
Q = line([(5,-1),(5,5)])

# display P and Q together.
(P+Q).show()

Guess plotting y=x^3 can be left as an exercise ;-)

Hint.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2017-08-23 19:26:39 +0200

Seen: 3,785 times

Last updated: Aug 23 '17