Re: Plotting a function of x and y
- To: mathgroup at smc.vnet.net
- Subject: [mg28107] Re: [mg28098] Plotting a function of x and y
- From: BobHanlon at aol.com
- Date: Sat, 31 Mar 2001 02:58:43 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`ImplicitPlot`"]; ImplicitPlot[3x + 2y == 50, {x, -1, 20}]; Bob Hanlon In a message dated 2001/3/30 4:36:28 AM, cdeacon at physics.mun.ca writes: >How do I plot the function > > 3 x+ 2y = 50? > >I suppose I could use Solve to rewrite the equation in slope-intercept >form, >but is there a simpler way? >