Re: Plane Visualisation... ?
- To: mathgroup at smc.vnet.net
- Subject: [mg27545] Re: Plane Visualisation... ?
- From: "Paul Lutus" <nospam at nosite.com>
- Date: Wed, 7 Mar 2001 04:07:43 -0500 (EST)
- References: <97qbsk$ndb@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
"Sandman" <leigh.robinson at btinternet.com> wrote in message news:97qbsk$ndb at smc.vnet.net... > Given three linear equations of planes in the form > > ax + by + c z = d > > > is it possible for mathematica to plot them all on one graph.... so i can > interpret the solutions of the system graphically... ?? Yes, this can be done. a = Plot3D[3x+2y,{x,-3,3},{y,-3,3}] b = Plot3D[-4x+1y,{x,-3,3},{y,-3,3}] c = Plot3D[1x+5y,{x,-3,3},{y,-3,3}] Show[a,b,c] -- Paul Lutus www.arachnoid.com