<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Wolfram|Alpha with no replies sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3774362" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3758832" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3666749" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3659892" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3599693" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3552336" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3544991" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3531759" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3522679" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3471630" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3465731" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3457583" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3445728" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3413235" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3398162" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3331233" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3330117" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3258257" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3245342" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3236609" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3774362">
    <title>Wolfram|Alpha cannot interpret my input</title>
    <link>https://community.wolfram.com/groups/-/m/t/3774362</link>
    <description>I downloaded the Wolfram|Alpha app and made the following question: &amp;#034;If the universe has started with just a command &amp;#034;expand, constrain&amp;#034;, what would be the result after 14 billion years of that command?&amp;#034;&#xD;
&#xD;
The result was &amp;#034;Wolfram|Alpha cannot interpret the input&amp;#034;.&#xD;
&#xD;
The idea is to propose what happens with only that simple command aplied to space atoms. The idea came from Wolfram&amp;#039;s video in The Well (Big Think) https://bigthink.com/the-well/physics-doesnt-explain-the-universe-computation-does/&#xD;
&#xD;
Can anyone help to improve the question in a way that a simulation could run?</description>
    <dc:creator>Henrique Agliardi</dc:creator>
    <dc:date>2026-08-05T13:25:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3758832">
    <title>An exact algebraic chain connecting 4096, 1729 and the Nardelli TOE operator</title>
    <link>https://community.wolfram.com/groups/-/m/t/3758832</link>
    <description>Introduction&#xD;
&#xD;
In this post I use Wolfram technologies and Wolfram Language syntax to investigate an exact algebraic chain connecting the constants 4096, 1729, and an eighteenth-root operator arising in my mathematical investigations.&#xD;
&#xD;
The purpose of this post is to illustrate symbolic computation and high-precision numerical verification using Wolfram technologies. All symbolic computations presented below are expressed in Wolfram Language syntax and verified using Wolfram computational technologies.&#xD;
&#xD;
Step 1. Exact symbolic identity&#xD;
&#xD;
    expr = (Sqrt[2 - Sqrt[3]] - Sqrt[2 + Sqrt[3]])^24;&#xD;
    &#xD;
    FullSimplify[expr]&#xD;
    Output:&#xD;
    4096&#xD;
&#xD;
Step 2. Hardy&amp;#x2013;Ramanujan number&#xD;
&#xD;
    ramanujan = 27*Sqrt[expr] + 1;&#xD;
    &#xD;
    FullSimplify[ramanujan]&#xD;
    Output:&#xD;
    1729&#xD;
&#xD;
Step 3. Eighteenth-root operator&#xD;
&#xD;
    operator = (expr + ramanujan)^(1/18);&#xD;
    &#xD;
    N[operator,50]&#xD;
    Output:&#xD;
    1.618762396...&#xD;
&#xD;
Step 4. Comparison with the Golden Ratio&#xD;
&#xD;
    N[GoldenRatio,50]&#xD;
    &#xD;
    N[operator - GoldenRatio,50]&#xD;
&#xD;
The second command computes the numerical difference between the algebraic operator and the Golden Ratio.&#xD;
&#xD;
Step 5. High-precision computation&#xD;
&#xD;
    N[operator,100]&#xD;
&#xD;
This confirms the stability of the numerical value at arbitrary precision.&#xD;
&#xD;
Visualization&#xD;
&#xD;
    Plot[&#xD;
     (4096 + 1729)^(1/x),&#xD;
     {x,10,25},&#xD;
     PlotRange-&amp;gt;All,&#xD;
     AxesLabel-&amp;gt;{&amp;#034;Exponent&amp;#034;,&amp;#034;Value&amp;#034;}&#xD;
    ]&#xD;
&#xD;
The graph illustrates how the algebraic operator evolves as the exponent varies.&#xD;
&#xD;
Conclusion&#xD;
&#xD;
This post illustrates how Wolfram Language can be used for&#xD;
&#xD;
exact symbolic computation,  &#xD;
arbitrary precision arithmetic,  &#xD;
numerical verification,  &#xD;
visualization of algebraic operators.&#xD;
&#xD;
The complete symbolic chain&#xD;
4096  &#xD;
   ↓  &#xD;
1729  &#xD;
   ↓  &#xD;
(4096 + 1729)^(1/18)  &#xD;
   ↓  &#xD;
1.618762396...&#xD;
&#xD;
is obtained through Wolfram technologies using Wolfram Language syntax.&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
The accompanying Wolfram|Alpha evaluations confirm the exact symbolic identities and the corresponding high-precision numerical values, illustrating the effectiveness of Wolfram technologies for symbolic mathematical exploration.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2026-07-14154755.png&amp;amp;userId=2483773&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2026-07-14155008.png&amp;amp;userId=2483773</description>
    <dc:creator>Michele Nardelli</dc:creator>
    <dc:date>2026-07-14T14:08:26Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3666749">
    <title>Using short answers API question</title>
    <link>https://community.wolfram.com/groups/-/m/t/3666749</link>
    <description>Hello!  &#xD;
I&amp;#039;d like to try short answers API with MMBasic for myself.  &#xD;
As for any APIs I tried I did the following:  &#xD;
Opened a TCP client as &amp;#034;api.wolframalpha.com&amp;#034;, port 80.  &#xD;
Send TCP request as &amp;#034;GET /v1/result?appid=MYAPPIDHERE&amp;amp;i=speed+of+light&amp;#034;+CRLF  &#xD;
Opening TCP clinet is ok, but for response I got 404 Not found (in html structure).  &#xD;
&#xD;
Something I need to do in an other way? This was worked for 99% of simple APIs.&#xD;
&#xD;
Thanks a lot!</description>
    <dc:creator>Gábor Terék</dc:creator>
    <dc:date>2026-03-20T11:48:52Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3659892">
    <title>AI and software engineering trends: the neo-industrial revolution</title>
    <link>https://community.wolfram.com/groups/-/m/t/3659892</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/fab0aaa2-5d63-4566-8eca-4240f66f7920</description>
    <dc:creator>Daniel Carvalho</dc:creator>
    <dc:date>2026-03-14T01:14:56Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3599693">
    <title>A better Wolfram Alpha Pro MathML nested fraction file upload example</title>
    <link>https://community.wolfram.com/groups/-/m/t/3599693</link>
    <description>The current Wolfram Alpha Pro MathML File Upload example is OK, but ...  &#xD;
https://www.wolframalpha.com/input?i=display+form&amp;amp;fileId=c3f74f5f-fa51-492e-85a8-799a434ab84f  &#xD;
I found a better one!</description>
    <dc:creator>Stewart Dickson</dc:creator>
    <dc:date>2026-01-01T22:35:54Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3552336">
    <title>Enter 2x3 matrices into Wolfram Problem Generator</title>
    <link>https://community.wolfram.com/groups/-/m/t/3552336</link>
    <description>I&amp;#039;m trying to solve some problems with the Wolfram Problem Generator. After clearing some problems, I got into the question on the screenshot. The answer is correct, the normal Wolfram Alpha also says so, but the Wolfram Problem Generator is not able to parse the correct result?  &#xD;
Am I doing something wrong? Is there a better way than writing the matrices code by hand? Because there are only options to create 2x2 and 3x3 matrices.&#xD;
&#xD;
![Wolfram Problem Generator not able to parse matrices][1]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-09-27at19-59-05WolframProblemGeneratorUnlimitedAI-generatedPracticeProblems.png&amp;amp;userId=3551794&#xD;
Would love to get some feedback. I really don&amp;#039;t know what I am doing wrong. There also aren&amp;#039;t any strange characters there that could stop Wolfram Alpha from parsing it.  &#xD;
Thank you for your help.</description>
    <dc:creator>M K</dc:creator>
    <dc:date>2025-09-27T18:04:18Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3544991">
    <title>WolframAlpha API returns CalculateUtilities wrapper within MathML output</title>
    <link>https://community.wolfram.com/groups/-/m/t/3544991</link>
    <description>When one calls the WolframAlpha API, the response contains an internal wrapper instead of pure MathML. This is a novel phenomenon that hasn&amp;#039;t occurred earlier this year. Example:&#xD;
&#xD;
    CalculateUtilities`HTMLMathMLUtilities`Private`toXML[.......]&#xD;
&#xD;
This occurs in this result:&#xD;
&#xD;
    {&#xD;
        &amp;#034;title&amp;#034;: &amp;#034;Decimal approximation&amp;#034;,&#xD;
        &amp;#034;scanner&amp;#034;: &amp;#034;Numeric&amp;#034;,&#xD;
        &amp;#034;id&amp;#034;: &amp;#034;DecimalApproximation&amp;#034;,&#xD;
        &amp;#034;position&amp;#034;: 299,&#xD;
        &amp;#034;error&amp;#034;: false,&#xD;
        &amp;#034;numsubpods&amp;#034;: 1,&#xD;
        &amp;#034;primary&amp;#034;: true,&#xD;
        &amp;#034;subpods&amp;#034;: [&#xD;
            {&#xD;
                &amp;#034;title&amp;#034;: &amp;#034;&amp;#034;,&#xD;
                &amp;#034;plaintext&amp;#034;: &amp;#034;0.78674913154721406857192161553239091731843262422412088229451313309870531901...&amp;#034;,&#xD;
                &amp;#034;mathml&amp;#034;: &amp;#034;&amp;lt;math xmlns=&amp;#039;http://www.w3.org/1998/Math/MathML&amp;#039;\n    mathematica:form=&amp;#039;StandardForm&amp;#039;\n    xmlns:mathematica=&amp;#039;http://www.wolfram.com/XML/&amp;#039;&amp;gt;\n &amp;lt;mtable&amp;gt;\n  &amp;lt;mtr&amp;gt;\n   &amp;lt;mtd&amp;gt;CalculateUtilities`HTMLMathMLUtilities`Private`toXML[0.7867491315472140685719216155323909173184326242241208822945131330987053190 &amp;amp;#8230;]&amp;lt;/mtd&amp;gt;\n  &amp;lt;/mtr&amp;gt;\n &amp;lt;/mtable&amp;gt;\n&amp;lt;/math&amp;gt;&amp;#034;&#xD;
            }&#xD;
        ],&#xD;
        &amp;#034;expressiontypes&amp;#034;: {&#xD;
            &amp;#034;name&amp;#034;: &amp;#034;Default&amp;#034;&#xD;
        },&#xD;
        &amp;#034;states&amp;#034;: [&#xD;
            {&#xD;
                &amp;#034;name&amp;#034;: &amp;#034;More digits&amp;#034;,&#xD;
                &amp;#034;input&amp;#034;: &amp;#034;DecimalApproximation__More digits&amp;#034;&#xD;
            }&#xD;
        ]&#xD;
    }&#xD;
&#xD;
Addendum: With powers such as 10^157, the MathML output even becomes some kind of ASCII art, which definitively is a bug:&#xD;
&#xD;
       &amp;lt;mtd&amp;gt;                                                                                                                                157&#xD;
    CalculateUtilities`HTMLMathMLUtilities`Private`toXML[(9.332621544394415268169923885626670049071596826438162146859296389522 &amp;amp;#8230;) 10   ]&amp;lt;/mtd&amp;gt;</description>
    <dc:creator>Jörn Loviscach</dc:creator>
    <dc:date>2025-09-13T10:32:42Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3531759">
    <title>Wolfram Alpha queries give missing() on the step-by-step in V14.3</title>
    <link>https://community.wolfram.com/groups/-/m/t/3531759</link>
    <description>Since upgrading to version 14.3, sending queries to Wolfram/Alpha (&amp;#034;==&amp;#034;) on even the simplest integral,  derivative, or limit always returns missing() on the step-by-step.  Prior to upgrading, it worked perfectly for even relatively complex calculations. I&amp;#039;ve been through the release notes and don&amp;#039;t see an obvious related item. What am I missing?&#xD;
&#xD;
Thanks.</description>
    <dc:creator>Larry Dale  Snelling</dc:creator>
    <dc:date>2025-08-17T16:12:39Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3522679">
    <title>Implementing &amp;#034;Master Series&amp;#034; (msr) function in Wolfram Alpha</title>
    <link>https://community.wolfram.com/groups/-/m/t/3522679</link>
    <description>I’m studying the Master Numbers method from this paper:&#xD;
Berezin, S. (2025). [Master Numbers][1]: Generalized Parametric Factorials. Zenodo. DOI 10.5281/zenodo.15655439&#xD;
&#xD;
mstr(m;s;r;t) = ∏_{ j = 1 }^{ t - 1 }( m + st - rj ) &#xD;
&#xD;
msr(m;s;r;x) = m + x + ∑_{ t = 2 }^{ ∞ }( mstr(m;s;r;t) x^t / t! )&#xD;
&#xD;
How to translate msr(m;s;r;x) into Wolfram Alpha syntax?&#xD;
&#xD;
For example, if I need to get the square root of 100, I want to be able to simply enter:&#xD;
&#xD;
msr(1; 0; -2; 99/200) &#xD;
&#xD;
and obtain the result.&#xD;
&#xD;
As in the [article][2] &amp;#039;MASTER-J: UNIVERSAL ANALYTICAL METHOD FOR SOLVING EQUATIONS AND ITS APPLICATIONS IN SCIENCE AND FINANCE&amp;#039;&#xD;
&#xD;
&#xD;
  [1]: https://doi.org/10.5281/zenodo.15655440&#xD;
  [2]: https://flagmannauki.ru/files/730-Berezin_Sergey_Viktorovich_4135_2.pdf</description>
    <dc:creator>Sergey Berezin</dc:creator>
    <dc:date>2025-07-31T13:14:07Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3471630">
    <title>Visualize the MRB constant mostly with Wolfram code</title>
    <link>https://community.wolfram.com/groups/-/m/t/3471630</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
Interestingly,&#xD;
&#xD;
 - The sequence (-1)^n(n^(1/n)-1) is not &amp;#034;open&amp;#034; in the sense that it&#xD;
   doesn&amp;#039;t diverge or expand indefinitely. Instead, it oscillates&#xD;
&#xD;
.&#xD;
&#xD;
 - It is not &amp;#034;closed&amp;#034; either for individual terms, because they do not&#xD;
   settle into a single value or a finite set of values.&#xD;
&#xD;
Instead, we focus on the convergence of the series formed by these terms, which leads to the MRB constant.&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/37cc3458-d4ab-4185-beaa-9fff64fa3417</description>
    <dc:creator>Marvin Ray Burns A.G.S. (cum laude)</dc:creator>
    <dc:date>2025-05-30T23:02:03Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3465731">
    <title>The general &amp;#034;unitary&amp;#034; formula, deriving from DN Constant: possible math connections with Pi and Phi</title>
    <link>https://community.wolfram.com/groups/-/m/t/3465731</link>
    <description>![enter image description here][1]&#xD;
![enter image description here][2]&#xD;
![enter image description here][3]&#xD;
![enter image description here][4]&#xD;
![enter image description here][5]&#xD;
![enter image description here][6]&#xD;
![enter image description here][7]&#xD;
![enter image description here][8]&#xD;
![enter image description here][9]&#xD;
![enter image description here][10]&#xD;
&#xD;
&#xD;
![enter image description here][11]&#xD;
&#xD;
&#xD;
![enter image description here][12]&#xD;
&#xD;
&#xD;
![enter image description here][13]&#xD;
&#xD;
&#xD;
![enter image description here][14]&#xD;
&#xD;
&#xD;
![enter image description here][15]&#xD;
&#xD;
&#xD;
&#xD;
&#xD;
&#xD;
&#xD;
![enter image description here][16]&#xD;
&#xD;
&#xD;
![enter image description here][17]&#xD;
&#xD;
&#xD;
![enter image description here][18]&#xD;
&#xD;
&#xD;
![enter image description here][19]&#xD;
&#xD;
&#xD;
![enter image description here][20]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22120454.png&amp;amp;userId=2483773&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22120803.png&amp;amp;userId=2483773&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22121041.png&amp;amp;userId=2483773&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22121406.png&amp;amp;userId=2483773&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22121740.png&amp;amp;userId=2483773&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22121852.png&amp;amp;userId=2483773&#xD;
  [7]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22122121.png&amp;amp;userId=2483773&#xD;
  [8]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22125335.png&amp;amp;userId=2483773&#xD;
  [9]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22125506.png&amp;amp;userId=2483773&#xD;
  [10]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22125559.png&amp;amp;userId=2483773&#xD;
  [11]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22125723.png&amp;amp;userId=2483773&#xD;
  [12]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22125909.png&amp;amp;userId=2483773&#xD;
  [13]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22130151.png&amp;amp;userId=2483773&#xD;
  [14]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22130507.png&amp;amp;userId=2483773&#xD;
  [15]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22130638.png&amp;amp;userId=2483773&#xD;
  [16]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22132312.png&amp;amp;userId=2483773&#xD;
  [17]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22132422.png&amp;amp;userId=2483773&#xD;
  [18]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22132540.png&amp;amp;userId=2483773&#xD;
  [19]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22133237.png&amp;amp;userId=2483773&#xD;
  [20]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-05-22133411.png&amp;amp;userId=2483773</description>
    <dc:creator>Michele Nardelli</dc:creator>
    <dc:date>2025-05-22T11:35:20Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3457583">
    <title>An alternative version of unitary master equation</title>
    <link>https://community.wolfram.com/groups/-/m/t/3457583</link>
    <description>From this other version of Master equation&#xD;
&#xD;
 ![enter image description here][1]&#xD;
&#xD;
&#xD;
We obtain, considering the integral tending to zero:  &#xD;
&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
From which, we obtain, in conclusion:&#xD;
&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
&#xD;
Again a value that is very closed to the Golden Ratio!&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ImmagineMaster.png&amp;amp;userId=2483773&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=4701Immagine2.png&amp;amp;userId=2483773&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=8042Immagine3.png&amp;amp;userId=2483773</description>
    <dc:creator>Michele Nardelli</dc:creator>
    <dc:date>2025-05-08T21:15:50Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3445728">
    <title>Input issues perhaps with - ContourIntegrate</title>
    <link>https://community.wolfram.com/groups/-/m/t/3445728</link>
    <description>I am trying the following  &#xD;
&#xD;
    ContourIntegrate[1/z, z \[Element] Circle[]]&#xD;
&#xD;
copied from the documentation into the web-based interface https://www.wolframalpha.com/input?i2d=true&amp;amp;i=ContourIntegrate%5BDivide%5B1%2Cz%5D%2C+z+%5C%5C%2891%29Element%5C%2893%29+Circle%5C%2891%29%5C%2893%29%5D&#xD;
&#xD;
And the interface is unable to recognize the input.&#xD;
![enter image description here][1]&#xD;
&#xD;
Am I missing something obvious here?&#xD;
&#xD;
Venkat.&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=contourintegrae_issue.png&amp;amp;userId=3445712</description>
    <dc:creator>Venkat Sastry</dc:creator>
    <dc:date>2025-04-17T14:32:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3413235">
    <title>decimal approximations of large numbers</title>
    <link>https://community.wolfram.com/groups/-/m/t/3413235</link>
    <description>I apologize if my question seems redundant. There are numbers so big it exceeds the space we have on this earth. I have read up an article on it and it stated that our earth is estimated to only 10^50 atoms wide.  &#xD;
I noticed that starting at 96717311574016^8^16 Wolfram alpha no longer computes decimal approximations; it only gives me a power of ten representation. A power of ten representation isn&amp;#039;t useful in knowing the numbers digits to a given precision. Has it have to do the fact that we only occupy so much space on this planet?  &#xD;
Thanks a lot for the help I may get!  &#xD;
This may be my second to last post.</description>
    <dc:creator>Mark Raygorodsky</dc:creator>
    <dc:date>2025-03-10T00:57:50Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3398162">
    <title>Unveiling the Europa Clipper&amp;#039;s unusual route to Jupiter&amp;#039;s moon</title>
    <link>https://community.wolfram.com/groups/-/m/t/3398162</link>
    <description>Curious about NASA&amp;#039;s Europa Clipper mission unusual route? Watch here as we take you through the spacecraft&amp;#039;s journey to Jupiter&amp;#039;s moon, Europa. Don&amp;#039;t forget to like, comment and subscribe for more exciting space content!&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
Congratulations to the Jet Propulsion Laboratory Europa Clipper System Engineering Team who were awarded with the Wolfram Innovator award for their use of Wolfram Language and System Modeler to validate requirements against performance of the Clipper&amp;#039;s thermal management system before launch.&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/8f6fae2f-a239-44db-a246-6a2670ac856c&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ARD_YT_EuropaClipper.png&amp;amp;userId=1660606&#xD;
  [3]: https://www.youtube.com/watch?v=sqmQh_WKcPc</description>
    <dc:creator>Keren Garcia</dc:creator>
    <dc:date>2025-02-20T23:07:38Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3331233">
    <title>Step-by-step using API</title>
    <link>https://community.wolfram.com/groups/-/m/t/3331233</link>
    <description>Hello everyone, &#xD;
Thanks for taking your time to read my post.&#xD;
&#xD;
I&amp;#039;m using the following API, but it no longer provides a step-by-step solution as it did previously. A few days ago, the step-by-step breakdown stopped appearing in the response.&#xD;
&#xD;
Here is the API query I&amp;#039;m using: https://api.wolframalpha.com/v2/query?appid=MYAPI_ID&amp;amp;input=(3x-5)(6x+16)&amp;amp;podstate=Step-by-step+solution&amp;amp;output=json&amp;amp;mag=2&#xD;
&#xD;
I always include &amp;#034;podstate=Step-by-step solution&amp;#034; so that i get the step by stem solution for my math question. However, recently, the step by step solution stopped showing in the api output result.&#xD;
&#xD;
Could you help me understand why this is happening and how i can resolve it?</description>
    <dc:creator>Ahmed Ahmed</dc:creator>
    <dc:date>2024-12-01T06:19:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3330117">
    <title>Wolfram Alpha step-by-step using API</title>
    <link>https://community.wolfram.com/groups/-/m/t/3330117</link>
    <description>Hello all, &#xD;
&#xD;
Thank you for taking the time to read my post, I have wasted hours and hours trying to figure this out!&#xD;
&#xD;
If anybody can possibly tell me **how in the world I can call the API as well as have it return the &amp;#034;step-by-step&amp;#034; instructions for each query** (if available of course) I would be beyond grateful!!! I hope I didn&amp;#039;t just waste 60 bucks for nothing! &#xD;
&#xD;
I have been messing around with it for probably over 30-40 hours and cannot get any of the useful info returned, such as: podstate, step-by-step solution, etc.  I can get the result returned, but have messed with many of the various &amp;#034;Parameters&amp;#034; to return what I need or want it to, and have had no luck. I can get it to return most items, but not the pod that has access to, or can see, the &amp;#034;step-by-step&amp;#034; solution. Please help!!&#xD;
&#xD;
I am a pro member, I actually got the pro membership specifically for this reason. I use wolfram in OpenAI and I love it, and now I want to integrate it into my &amp;#034;tutor&amp;#034; workflow to study for various math exams, tests, among many other mathematics applied use cases. &#xD;
&#xD;
If mathmatica can call the API for step by step, why wouldn&amp;#039;t the standard WolframAlpha API? I have tried many of the API&amp;#039;s, and the only two that do somewhat well are the &amp;#034;converstaional&amp;#034; and the &amp;#034;full results&amp;#034; but neither is returning anything that has to do with the &amp;#034;step-by-step&amp;#034; solution, nor any pods that can see or return any info regarding these pods/subpods.&#xD;
&#xD;
Just so you can all see, this is an example of one of the **many** http get requests I have made and sent to the API. Dont be too critical on it, as I am merely trying to tinker to get it to return the output that I am in desperate need of! &#xD;
&#xD;
Thank you all again for your time and I look very very forward to reading any responses I may get. **I am very eager to put this project to rest!**&#xD;
 &#xD;
&#xD;
HTTP Request Example:&#xD;
&#xD;
    // Define the API endpoint and parameters&#xD;
    const apiUrl = &amp;#039;http://api.wolframalpha.com/v2/query&amp;#039;;&#xD;
    const appid = &amp;#039;MY_APP_ID&amp;#039;;&#xD;
    const input = `${$json.message.content.equation} step-by-step`;&#xD;
    const format = &amp;#039;plaintext,mathml&amp;#039;;&#xD;
    const output = &amp;#039;JSON&amp;#039;;&#xD;
    &#xD;
    // Construct the full URL with query parameters&#xD;
    const url = `${apiUrl}?appid=${appid}&amp;amp;input=${encodeURIComponent(input)}&amp;amp;format=${format}&amp;amp;output=${output}`;&#xD;
    &#xD;
    try {&#xD;
      // Perform the HTTP GET request&#xD;
      const response = await this.helpers.httpRequest({&#xD;
        method: &amp;#039;GET&amp;#039;,&#xD;
        url: url,&#xD;
        json: true,&#xD;
      });&#xD;
   &#xD;
      return [&#xD;
        {&#xD;
          json: response,&#xD;
        },&#xD;
      ];&#xD;
    } catch (error) {&#xD;
      // Handle any errors that occur during the request&#xD;
      throw new Error(`HTTP Request failed: ${error.message}`);&#xD;
    }</description>
    <dc:creator>Christropher Chausse</dc:creator>
    <dc:date>2024-11-28T03:37:01Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3258257">
    <title>Q25 Hack Project - VitalityAI</title>
    <link>https://community.wolfram.com/groups/-/m/t/3258257</link>
    <description>I hope this message finds you well. &#xD;
&#xD;
As per your instructions from the event, I am reaching out to provide the details of my project, VitalityAI, which utilizes the Wolfram API.&#xD;
&#xD;
Here are the relevant links:  &#xD;
- GitHub Repository: https://github.com/subhro1530/VitalityAI  &#xD;
- Project/Website Working Link: https://vitalityai.vercel.app/chatbot  &#xD;
- Project Demo Video: https://www.youtube.com/watch?v=Xony_HNdFGM&#xD;
&#xD;
Thank you for the opportunity!</description>
    <dc:creator>Pratham Agarwal</dc:creator>
    <dc:date>2024-08-27T20:26:56Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3245342">
    <title>Used WolframAPI in my project for Empower Hacks 2.0 and won 5th place</title>
    <link>https://community.wolfram.com/groups/-/m/t/3245342</link>
    <description>I used the Wolfram Alpha LLM API in my project &amp;#034;FirstGenesis&amp;#034; and won 5th place in Empower Hacks 2.0. It sends queries and outputs the results.&#xD;
&#xD;
Here are the Links  &#xD;
https://devpost.com/software/firstgenu  &#xD;
https://firstgenesis.vercel.app/  &#xD;
https://github.com/DracoRX16/firstgenesis/tree/main</description>
    <dc:creator>Aayush Jalgaonkar</dc:creator>
    <dc:date>2024-08-10T06:15:53Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3236609">
    <title>Fun with Collatz conjecture inspired loops!</title>
    <link>https://community.wolfram.com/groups/-/m/t/3236609</link>
    <description>I&amp;#039;m also attaching a screenshot of the previous calculation. &#xD;
&#xD;
&#xD;
https://www.wolframalpha.com/input?i2d=true&amp;amp;i=Power%5B2%2C%5C%2840%29%5C%2840%29Divide%5BDivide%5B%5C%2840%293%5C%2840%29n%2B2%5C%2841%29%2B1%5C%2841%29%2C2%5D%2C2%5D-Divide%5BDivide%5B%5C%2840%293Divide%5B%5C%2840%29n%2B3%5C%2841%29%2C2%5D%2B1%5C%2841%29%2C2%5D%2C2%5D%5C%2841%29-%5C%2840%29n%2B1%5C%2841%29%5C%2840%29Divide%5B3%2C8%5D%5C%2841%29%5C%2841%29%2B%5C%2840%29%5C%2840%29Divide%5BDivide%5B%5C%2840%293%5C%2840%29n%2B1%5C%2841%29%2B1%5C%2841%29%2C2%5D%2C2%5D-Divide%5BDivide%5B%5C%2840%293Divide%5B%5C%2840%29n%2B2%5C%2841%29%2C2%5D%2B1%5C%2841%29%2C2%5D%2C2%5D%5C%2841%29-%5C%2840%29n%5C%2841%29%5C%2840%29Divide%5B3%2C8%5D%5C%2841%29%5C%2841%29%2B%5C%2840%29%5C%2840%29%5C%2840%29-3%5C%2840%29-n%5C%2841%29%2B1%5C%2841%29-%5C%2840%293n%2B1%5C%2841%29%5C%2841%29%5C%2841%29%2B%5C%2840%29%5C%2840%29Divide%5B%5C%2840%29Power%5B2%2Cn%5D*3%5C%2840%29Power%5B2%2C%5C%2840%29n-1%5C%2841%29%5D%5C%2841%29%2C4%5D%5C%2841%29-%5C%2840%29Power%5B2%2C%5C%2840%29n-1%5C%2841%29%5D*3%5C%2840%29Power%5B2%2C%5C%2840%29n-2%5C%2841%29%5D%5C%2841%29%5C%2841%29%5C%2841%29%5D%3D1</description>
    <dc:creator>Paul Charlton 2</dc:creator>
    <dc:date>2024-07-27T18:10:55Z</dc:date>
  </item>
</rdf:RDF>

