<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Coordinate System</title>
    <link>http://www.mapleprimes.com/questions/40228-Coordinate-System</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 10:46:57 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 10:46:57 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Coordinate System</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Coordinate System</title>
      <link>http://www.mapleprimes.com/questions/40228-Coordinate-System</link>
    </image>
    <item>
      <title>Coordinate System</title>
      <link>http://www.mapleprimes.com/questions/40228-Coordinate-System?ref=Feed:MaplePrimes:Coordinate System:Comments#answer74049</link>
      <itunes:summary>(Very sorry, something is wrong. I use a lot of script, it can be the reason.)

I want to (triple)integrate f(x,y,z):=7z on the cylinder
&lt;pre&gt;
x^2+y^2 less than R, 0 less than z less than m.
&lt;\pre&gt;

There are a lot of predefined region, but I haven't found Cylinder.
In fact, my question is not "how to solve this exercise", but
"does exist in Maple somewhere in a package where I can define the region Cylindrical which I could use in integration.
In VectorCalculus there is SetCoordinates('cylindrical'[r, theta,z]); but I don't know
it can be applied and how, or not.

Thanks, Sandor</itunes:summary>
      <description>(Very sorry, something is wrong. I use a lot of script, it can be the reason.)

I want to (triple)integrate f(x,y,z):=7z on the cylinder
&lt;pre&gt;
x^2+y^2 less than R, 0 less than z less than m.
&lt;\pre&gt;

There are a lot of predefined region, but I haven't found Cylinder.
In fact, my question is not "how to solve this exercise", but
"does exist in Maple somewhere in a package where I can define the region Cylindrical which I could use in integration.
In VectorCalculus there is SetCoordinates('cylindrical'[r, theta,z]); but I don't know
it can be applied and how, or not.

Thanks, Sandor</description>
      <guid>74049</guid>
      <pubDate>Wed, 16 Jan 2008 23:15:12 Z</pubDate>
      <itunes:author>SandorSzabo</itunes:author>
      <author>SandorSzabo</author>
    </item>
    <item>
      <title>Cylinder</title>
      <link>http://www.mapleprimes.com/questions/40228-Coordinate-System?ref=Feed:MaplePrimes:Coordinate System:Comments#answer74047</link>
      <itunes:summary>Please note that to enter &amp;lt; in this forum, you have to use 
&amp;lt ; (without the space), otherwise it will interpret your &amp;lt; as the start of an HTML tag.

You seem to be working with int in the Student[VectorCalculus] package.  There isn't a "built-in" Cylinder there, but you can use the generic Region.  

&lt;pre&gt;
&gt; with(Student[VectorCalculus]):
  int(f(x,y,z),[x,y,z]=Region(-sqrt(R) .. sqrt(R),
    -sqrt(R-x^2) .. sqrt(R-x^2), 0 .. m));
&lt;/pre&gt;

Unfortunately this doesn't work well with coordinates other than cartesian.  For example, I would have hoped that you could do it this way:

&lt;pre&gt;
 SetCoordinates(cylindrical[r,theta,z]);
 int(f(r,theta,z),[r,theta,z]=Region(0 .. sqrt(R), 0 .. 2*Pi,
    0 .. m));
&lt;/pre&gt;

But that does not work: it gives you an integral of f(r,theta,z) dz dtheta dr, when what you need is
f(r,theta,z) r dz dtheta dr.
 </itunes:summary>
      <description>Please note that to enter &amp;lt; in this forum, you have to use 
&amp;lt ; (without the space), otherwise it will interpret your &amp;lt; as the start of an HTML tag.

You seem to be working with int in the Student[VectorCalculus] package.  There isn't a "built-in" Cylinder there, but you can use the generic Region.  

&lt;pre&gt;
&gt; with(Student[VectorCalculus]):
  int(f(x,y,z),[x,y,z]=Region(-sqrt(R) .. sqrt(R),
    -sqrt(R-x^2) .. sqrt(R-x^2), 0 .. m));
&lt;/pre&gt;

Unfortunately this doesn't work well with coordinates other than cartesian.  For example, I would have hoped that you could do it this way:

&lt;pre&gt;
 SetCoordinates(cylindrical[r,theta,z]);
 int(f(r,theta,z),[r,theta,z]=Region(0 .. sqrt(R), 0 .. 2*Pi,
    0 .. m));
&lt;/pre&gt;

But that does not work: it gives you an integral of f(r,theta,z) dz dtheta dr, when what you need is
f(r,theta,z) r dz dtheta dr.
 </description>
      <guid>74047</guid>
      <pubDate>Thu, 17 Jan 2008 00:19:42 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Circle times the segment</title>
      <link>http://www.mapleprimes.com/questions/40228-Coordinate-System?ref=Feed:MaplePrimes:Coordinate System:Comments#answer74044</link>
      <itunes:summary>I think that it is easier:

&lt;code&gt;int(int(7*z,[x,y] = Circle( &amp;lt; 0,0 &amp;gt;, R ) ),z=0..m);
&lt;/code&gt;</itunes:summary>
      <description>I think that it is easier:

&lt;code&gt;int(int(7*z,[x,y] = Circle( &amp;lt; 0,0 &amp;gt;, R ) ),z=0..m);
&lt;/code&gt;</description>
      <guid>74044</guid>
      <pubDate>Thu, 17 Jan 2008 04:24:56 Z</pubDate>
      <itunes:author>jakubi</itunes:author>
      <author>jakubi</author>
    </item>
    <item>
      <title>Integration</title>
      <link>http://www.mapleprimes.com/questions/40228-Coordinate-System?ref=Feed:MaplePrimes:Coordinate System:Comments#answer74040</link>
      <itunes:summary>Do you mean &lt;code&gt;x^2 + y^2 &amp;lt;= R&lt;/code&gt; or &lt;code&gt;x^2 + y^2 &amp;lt;= R^2&lt;/code&gt;? The former is what Israel assumes, the latter what Jakubi assumes. I will assume the latter.

Because &lt;code&gt;f(x,y,z) = 7z&lt;/code&gt; is independent of &lt;code&gt;x&lt;/code&gt; and &lt;code&gt;y&lt;/code&gt; the integral separates and becomes &lt;code&gt;int(7z,z = 0..m)&lt;/code&gt; times the area of the base of the cylinder. So, the result is

&lt;pre&gt;
&gt; int(7*z,z=0..m)*Pi*R^2;
                           7  2     2
                           - m  Pi R 
                           2         
&lt;/pre&gt;

PS: Reading your post again I can see that a solution is not actually what you ask for. Anyway, here it is.</itunes:summary>
      <description>Do you mean &lt;code&gt;x^2 + y^2 &amp;lt;= R&lt;/code&gt; or &lt;code&gt;x^2 + y^2 &amp;lt;= R^2&lt;/code&gt;? The former is what Israel assumes, the latter what Jakubi assumes. I will assume the latter.

Because &lt;code&gt;f(x,y,z) = 7z&lt;/code&gt; is independent of &lt;code&gt;x&lt;/code&gt; and &lt;code&gt;y&lt;/code&gt; the integral separates and becomes &lt;code&gt;int(7z,z = 0..m)&lt;/code&gt; times the area of the base of the cylinder. So, the result is

&lt;pre&gt;
&gt; int(7*z,z=0..m)*Pi*R^2;
                           7  2     2
                           - m  Pi R 
                           2         
&lt;/pre&gt;

PS: Reading your post again I can see that a solution is not actually what you ask for. Anyway, here it is.</description>
      <guid>74040</guid>
      <pubDate>Thu, 17 Jan 2008 13:11:02 Z</pubDate>
      <itunes:author>John Fredsted</itunes:author>
      <author>John Fredsted</author>
    </item>
    <item>
      <title>Integration on cylinder</title>
      <link>http://www.mapleprimes.com/questions/40228-Coordinate-System?ref=Feed:MaplePrimes:Coordinate System:Comments#answer74039</link>
      <itunes:summary>Thanks for all.
I wanted to solve this problem in a similar way as Robert. (I'm thinking of a modification that works well. If I find a solution I will post it here.)
At this moment jakubi's solution is the simplest (that works also if integral is not separated).
Anyway, I learned some useful methods from you.
Thanks again.
                 Sandor </itunes:summary>
      <description>Thanks for all.
I wanted to solve this problem in a similar way as Robert. (I'm thinking of a modification that works well. If I find a solution I will post it here.)
At this moment jakubi's solution is the simplest (that works also if integral is not separated).
Anyway, I learned some useful methods from you.
Thanks again.
                 Sandor </description>
      <guid>74039</guid>
      <pubDate>Thu, 17 Jan 2008 14:05:54 Z</pubDate>
      <itunes:author>SandorSzabo</itunes:author>
      <author>SandorSzabo</author>
    </item>
  </channel>
</rss>