Re: How to plot solutions of equations with Mathematica?
- To: mathgroup at smc.vnet.net
- Subject: [mg61026] Re: How to plot solutions of equations with Mathematica?
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sat, 8 Oct 2005 02:48:31 -0400 (EDT)
- Organization: The Open University, Milton Keynes, U.K.
- References: <di59tc$3jb$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Michelasso wrote:
> 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?
>
*ImplicitPlot* will do what you want:
In[1]:=
Needs["Graphics`ImplicitPlot`"]
ImplicitPlot[x^2 + y^2 == 1, {x, -2, 2}];
Check
http://documents.wolfram.com/mathematica/Add-onsLinks/StandardPackages/Graphics/ImplicitPlot.html
Regards,
/J.M.