<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Obtaining power of a function x+y</title>
    <link>http://www.mapleprimes.com/questions/135999-Obtaining-Power-Of-A-Function-Xy</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sat, 13 Jun 2026 21:00:41 GMT</lastBuildDate>
    <pubDate>Sat, 13 Jun 2026 21:00:41 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Obtaining power of a function x+y</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Obtaining power of a function x+y</title>
      <link>http://www.mapleprimes.com/questions/135999-Obtaining-Power-Of-A-Function-Xy</link>
    </image>
    <item>
      <title>Possible way</title>
      <link>http://www.mapleprimes.com/questions/135999-Obtaining-Power-Of-A-Function-Xy?ref=Feed:MaplePrimes:Obtaining power of a function x+y:Comments#answer136000</link>
      <itunes:summary>&lt;p&gt;&lt;strong&gt;eq1:=4*x^n*y^m+(x+y)^n+x^3:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;simplify(log[x+y](select(has, eq1, x+y)), symbolic);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; n&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;strong&gt;eq1:=4*x^n*y^m+(x+y)^n+x^3:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;simplify(log[x+y](select(has, eq1, x+y)), symbolic);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; n&lt;/p&gt;</description>
      <guid>136000</guid>
      <pubDate>Tue, 24 Jul 2012 09:23:16 Z</pubDate>
      <itunes:author>Kitonum</itunes:author>
      <author>Kitonum</author>
    </item>
    <item>
      <title>how to get the power of (x+y)^n</title>
      <link>http://www.mapleprimes.com/questions/135999-Obtaining-Power-Of-A-Function-Xy?ref=Feed:MaplePrimes:Obtaining power of a function x+y:Comments#answer136021</link>
      <itunes:summary>&lt;p&gt;You may try with &lt;strong&gt;patmach&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;patmatch((x+y)^n,a::algebraic^m::algebraic,'p');p;
                                 true
                          [a = x + y, m = n]
&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;You may try with &lt;strong&gt;patmach&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;patmatch((x+y)^n,a::algebraic^m::algebraic,'p');p;
                                 true
                          [a = x + y, m = n]
&lt;/pre&gt;</description>
      <guid>136021</guid>
      <pubDate>Thu, 26 Jul 2012 12:39:19 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
    <item>
      <title>op</title>
      <link>http://www.mapleprimes.com/questions/135999-Obtaining-Power-Of-A-Function-Xy?ref=Feed:MaplePrimes:Obtaining power of a function x+y:Comments#answer136028</link>
      <itunes:summary>&lt;p&gt;The exponent is the second operand of a call to `^`.&lt;/p&gt;
&lt;pre&gt;&amp;gt; op((x+y)^n);

                                   x + y, n

&amp;gt; op(2,(x+y)^n);

                                       n

&amp;gt; expr:=(x+y)^(-p)+4*x^n*y^m+(x+y)^n+x^3:        

&amp;gt; seq([U,op(2,U)],U in indets(expr,`^`));

            n        m              n              (-p)         3
          [x , n], [y , m], [(x + y) , n], [(x + y)    , -p], [x , 3]

&amp;gt; map2(op,2,indets(expr,identical(x+y)^anything));

                                    {n, -p}
&lt;/pre&gt;
&lt;!--break--&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The exponent is the second operand of a call to `^`.&lt;/p&gt;
&lt;pre&gt;&amp;gt; op((x+y)^n);

                                   x + y, n

&amp;gt; op(2,(x+y)^n);

                                       n

&amp;gt; expr:=(x+y)^(-p)+4*x^n*y^m+(x+y)^n+x^3:        

&amp;gt; seq([U,op(2,U)],U in indets(expr,`^`));

            n        m              n              (-p)         3
          [x , n], [y , m], [(x + y) , n], [(x + y)    , -p], [x , 3]

&amp;gt; map2(op,2,indets(expr,identical(x+y)^anything));

                                    {n, -p}
&lt;/pre&gt;
&lt;!--break--&gt;
&lt;p&gt;acer&lt;/p&gt;</description>
      <guid>136028</guid>
      <pubDate>Thu, 26 Jul 2012 20:43:11 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
  </channel>
</rss>