Re: [Q] Plotting Inequalities
- To: mathgroup at smc.vnet.net
- Subject: [mg33553] Re: [mg33530] [Q] Plotting Inequalities
- From: Andrzej Kozlowski <andrzej at bekkoame.ne.jp>
- Date: Sun, 31 Mar 2002 04:08:59 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Mathematica 4.1 comes with the Graphics`InequalityGraphics` package that can do just that. The only problem is that the region you gave is unbounded. if you add some bounding conditions you canuse the InequalityPlot3D function as follows: In[14]:= <<Graphics`InequalityGraphics` In[19]:= InequalityPlot3D[ x<=y+z && y<=x+z && z<=x+y&&-5<=x<=5&&-5<=y<=5,{x}, {y}, {z}] On Friday, March 29, 2002, at 08:13 PM, Janusz Kawczak wrote: > Hello: > > is there a readily available function for plotting filled in region > that is contained within a system of inequalities in dimensions > higher than 2 (well this leaves us with 3). I would like to see > the region of {x_1<=x_2+x_3 && x_2<=x_1+x_3 && x_3<=x_1+x_2} > filled in. Of course this is the simplest system I have in mind. > > Thank you. > > Janusz. > > >