<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Le 20/10/2012 17:42,
      <a class="moz-txt-link-abbreviated" href="mailto:Ercan.Ulupinar@web.de">Ercan.Ulupinar@web.de</a> a écrit :<br>
    </div>
    <blockquote cite="mid:A54D7B36767F43C4B9D350DEAE54983C@UliMac"
      type="cite">
      <div dir="ltr">
        <div style="FONT-FAMILY: 'Calibri'; COLOR: #000000; FONT-SIZE:
          12pt">
          <div>Hi,</div>
          <div> </div>
          <div>how can i plot(3d) these inequations? :</div>
          <div> </div>
          <div>x^2 + y^2 <= 1 && 0 <= z <= x^2 +y^2 </div>
        </div>
      </div>
    </blockquote>
    x^2 + y^2 <= 1 : is the filled cylinder along (Oz), of radius r=1<br>
    <br>
    let's set r^2 = x^2+y^2<br>
    then zp(r) = x^2 +y^2 = r^2  is the vertical paraboloid  with
    minimum at (0,0)<br>
    So 0 <= z <= zp(r)  is the filled paraboloid bowl based on the
    (Oxy) plane.<br>
    The first condition limits the bowl within the cylindrical 0<= r
    <= 1 part.<br>
    <br>
    Then using plot3d() becomes easy ;)<br>
    <br>
    Samuel<br>
    <br>
  </body>
</html>