1 | initial version |
This is very unclear. For p2
, if you want an implicit plot where x_0
is a parameter that belongs to the interval $[8,14]$, you can do:
sage: p2 = implicit_plot(70==6*x_0+18*x_1,(8,14),(-3,3))
You can also have a look to the parametric_plot
function.
2 | No.2 Revision |
This is very unclear. For p2
, if you want an implicit plot where x_0
is a parameter that belongs to the interval $[8,14]$, you can do:
sage: p2 = implicit_plot(70==6*x_0+18*x_1,(8,14),(-3,3))
You can also have a look to the parametric_plot
function.
But without more details about your actual goal, there is not much to say.