how to plot vertical lines    
   how do I plot a vertical line such as x = 3, together with another graph, such as y = x^3?
add a comment
how do I plot a vertical line such as x = 3, together with another graph, such as y = x^3?
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.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2017-08-23 19:26:39 +0100
Seen: 4,486 times
Last updated: Aug 23 '17
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.