Re: Plot of x=y^2
- To: mathgroup at smc.vnet.net
- Subject: [mg45070] Re: Plot of x=y^2
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Mon, 15 Dec 2003 07:48:15 -0500 (EST)
- References: <brk502$sra$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Plot[{Sqrt[x], -Sqrt[x]}, {x, 0,100}];
Needs["Graphics`ImplicitPlot`"];
ImplicitPlot[x==y^2, {x,0,100},
AspectRatio->.618];
Bob Hanlon
In article <brk502$sra$1 at smc.vnet.net>, Ruben Garcia <rubgb at yahoo.com> wrote:
<< I'm just a beginner with Mathematica and I'd like to
know if it's possible to plot the parabola x=y^2 in
the range -10 to 10. I'm trying using y=Sqrt[x] but
that doesn't work for negative x.
>><BR><BR>