Re: How to plot solutions of equations with Mathematica?
- To: mathgroup at smc.vnet.net
- Subject: [mg61036] Re: [mg61011] How to plot solutions of equations with Mathematica?
- From: "David Park" <djmp at earthlink.net>
- Date: Sat, 8 Oct 2005 02:48:47 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`ImplicitPlot`"] Needs["Graphics`Graphics`"] ImplicitPlot[x^2 + y^2 == 1, {x, -1, 1}]; ParametricPlot[{Cos[t], Sin[t]}, {t, 0, 2Pi}, AspectRatio -> Automatic]; PolarPlot[1, {t, 0, 2Pi}]; David Park djmp at earthlink.net http://home.earthlink.net/~djmp/ From: Michelasso [mailto:michelasso at despammed.com] To: mathgroup at smc.vnet.net It is a very stupid question, but browsing the help I couldn't find a quick solution to this problem: I want to plot on the plane the solutions of the equation in two variables x^2+y^2 == 1 with Mathematica. How should I do?