<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, how do I really unassume a variable in Maple?</title>
    <link>http://www.mapleprimes.com/questions/40793-How-Do-I-Really-Unassume-A-Variable-In-Maple</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 07:53:06 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 07:53:06 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, how do I really unassume a variable in Maple?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, how do I really unassume a variable in Maple?</title>
      <link>http://www.mapleprimes.com/questions/40793-How-Do-I-Really-Unassume-A-Variable-In-Maple</link>
    </image>
    <item>
      <title>assuming</title>
      <link>http://www.mapleprimes.com/questions/40793-How-Do-I-Really-Unassume-A-Variable-In-Maple?ref=Feed:MaplePrimes:how do I really unassume a variable in Maple?:Comments#answer75525</link>
      <itunes:summary>You could try something like this:

restart;
f1 := alpha*(3*lambda^3*rho*d/(rho^2 + d^2)^(5/2));
I1 := int(f1,rho=a..b) assuming d&gt;0;
d := 3.0;
I1;

Hope this helps.

J. Tarr</itunes:summary>
      <description>You could try something like this:

restart;
f1 := alpha*(3*lambda^3*rho*d/(rho^2 + d^2)^(5/2));
I1 := int(f1,rho=a..b) assuming d&gt;0;
d := 3.0;
I1;

Hope this helps.

J. Tarr</description>
      <guid>75525</guid>
      <pubDate>Wed, 26 Sep 2007 23:19:14 Z</pubDate>
      <itunes:author>Mariner</itunes:author>
      <author>Mariner</author>
    </item>
    <item>
      <title>evaluating at d=3</title>
      <link>http://www.mapleprimes.com/questions/40793-How-Do-I-Really-Unassume-A-Variable-In-Maple?ref=Feed:MaplePrimes:how do I really unassume a variable in Maple?:Comments#answer75524</link>
      <itunes:summary>Irrespective of the "assume" versus "assuming" issue, if you want to plug in a specific number for d in your expression, it's best to use "eval" rather than assigning a value to d.  Thus:
&lt;pre&gt;
&gt; eval(I1, d = 3.0);
&lt;/pre&gt;
&lt;maple&gt;-3.0*alpha*lambda^3*(-(b^2+9.00)^(3/2)+(a^2+9.00)^(3/2))
/(a^2+9.00)^(3/2)/(b^2+9.00)^(3/2)&lt;/maple&gt;

If you really do want to remove assumptions on a variable, you can do that as follows:

&lt;pre&gt;
&gt; assign(d,'d'): unassign('d'):
&lt;/pre&gt;
 </itunes:summary>
      <description>Irrespective of the "assume" versus "assuming" issue, if you want to plug in a specific number for d in your expression, it's best to use "eval" rather than assigning a value to d.  Thus:
&lt;pre&gt;
&gt; eval(I1, d = 3.0);
&lt;/pre&gt;
&lt;maple&gt;-3.0*alpha*lambda^3*(-(b^2+9.00)^(3/2)+(a^2+9.00)^(3/2))
/(a^2+9.00)^(3/2)/(b^2+9.00)^(3/2)&lt;/maple&gt;

If you really do want to remove assumptions on a variable, you can do that as follows:

&lt;pre&gt;
&gt; assign(d,'d'): unassign('d'):
&lt;/pre&gt;
 </description>
      <guid>75524</guid>
      <pubDate>Wed, 26 Sep 2007 23:42:08 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Thanks for your help!</title>
      <link>http://www.mapleprimes.com/questions/40793-How-Do-I-Really-Unassume-A-Variable-In-Maple?ref=Feed:MaplePrimes:how do I really unassume a variable in Maple?:Comments#answer75520</link>
      <itunes:summary>Thanks for all your help!  I did have in mind the removal of the assumption, so the suggested command

assign(d,'d'): unassign('d'):


will be quite useful!


-Dan</itunes:summary>
      <description>Thanks for all your help!  I did have in mind the removal of the assumption, so the suggested command

assign(d,'d'): unassign('d'):


will be quite useful!


-Dan</description>
      <guid>75520</guid>
      <pubDate>Thu, 27 Sep 2007 00:26:43 Z</pubDate>
      <itunes:author>tintin</itunes:author>
      <author>tintin</author>
    </item>
    <item>
      <title>unassume</title>
      <link>http://www.mapleprimes.com/questions/40793-How-Do-I-Really-Unassume-A-Variable-In-Maple?ref=Feed:MaplePrimes:how do I really unassume a variable in Maple?:Comments#comment84934</link>
      <itunes:summary>A shorthand version is

a:='a':

Sandor</itunes:summary>
      <description>A shorthand version is

a:='a':

Sandor</description>
      <guid>84934</guid>
      <pubDate>Fri, 05 Oct 2007 21:08:30 Z</pubDate>
      <itunes:author>SandorSzabo</itunes:author>
      <author>SandorSzabo</author>
    </item>
  </channel>
</rss>