<?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 ideas 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/3758832" />
        <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/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/3398162" />
        <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:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3166260" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3070538" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3000913" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2936605" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2840816" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2823806" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2823601" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2771372" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2472931" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2424580" />
      </rdf:Seq>
    </items>
  </channel>
  <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/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/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/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/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>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3166260">
    <title>MathQuester: interactive math learning platform</title>
    <link>https://community.wolfram.com/groups/-/m/t/3166260</link>
    <description>https://github.com/Evadshell/Aminovate2&#xD;
&#xD;
Github link to my project&#xD;
&#xD;
---&#xD;
&#xD;
**Project Name:** MathQuester!&#xD;
&#xD;
**Tagline:** Your Personal Math Assistant&#xD;
&#xD;
**Description:**  &#xD;
MathQuester! is an interactive math learning platform designed to make math learning more engaging and accessible to students of all levels. With MathQuester!, users can explore mathematical concepts, solve problems, and receive step-by-step guidance through complex equations.&#xD;
&#xD;
**Features:**  &#xD;
- **Full Results API Integration:** Utilizing Wolfram&amp;#039;s Full Results API, MathQuester! delivers comprehensive solutions to mathematical queries, including step-by-step solutions, visual representations, and related concepts.  &#xD;
- **Conversational AI:** MathQuester! incorporates conversational AI to provide an interactive learning experience. Users can ask questions in natural language and receive detailed explanations and solutions.  &#xD;
- **MathBot Integration:** In addition to text-based interaction, MathQuester! features MathBot, an AI-powered assistant that enhances interactivity through voice control and audio feedback. MathBot makes learning math more intuitive and engaging.  &#xD;
- **OAuth2 Google Login:** Users can securely log in to MathQuester! using their Google accounts, ensuring a seamless and personalized experience.  &#xD;
- **Chakra UI:** MathQuester! boasts a user-friendly interface built with Chakra UI, offering a sleek and responsive design across all devices.  &#xD;
- **Future Scope:** In the future, MathQuester! aims to further enhance its interactivity and accessibility. Planned features include audio-controlled interactions, real-time collaboration tools, and personalized learning paths tailored to individual users&amp;#039; strengths and weaknesses.&#xD;
&#xD;
**Challenges Faced:**  &#xD;
During development, we encountered challenges in integrating various APIs seamlessly and ensuring a smooth user experience across different platforms. However, through rigorous testing and iterative improvements, we overcame these hurdles to deliver a polished product.&#xD;
&#xD;
**Future Scope:**  &#xD;
- **Enhanced Interactivity:** Implementing audio-controlled interactions to enable hands-free operation, catering to users with diverse needs and preferences.  &#xD;
- **Real-time Collaboration:** Introducing collaborative features that allow multiple users to work on math problems together in real-time, fostering teamwork and peer learning.  &#xD;
- **Personalized Learning Paths:** Utilizing machine learning algorithms to analyze user performance and provide personalized recommendations for improving math skills.</description>
    <dc:creator>Tejas keshwani</dc:creator>
    <dc:date>2024-04-29T04:01:44Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3070538">
    <title>Enthalpy of the modified white hole</title>
    <link>https://community.wolfram.com/groups/-/m/t/3070538</link>
    <description>We analyze the following equation, concerning the enthalpy of the modified white hole. All calculations were carried out using the WolframAlpha.&#xD;
&#xD;
![formulas][1]&#xD;
&#xD;
&#xD;
![formulas][2]&#xD;
&#xD;
&#xD;
![formulas][3]&#xD;
&#xD;
&#xD;
![formulas][4]&#xD;
&#xD;
&#xD;
![formulas][5]&#xD;
&#xD;
&#xD;
![formulas][6]&#xD;
&#xD;
&#xD;
![formulas][7]&#xD;
&#xD;
&#xD;
![formulas][8]&#xD;
&#xD;
&#xD;
![formulas][9]&#xD;
&#xD;
&#xD;
![formulas][10]&#xD;
&#xD;
&#xD;
![formulas][11]&#xD;
&#xD;
&#xD;
![formulas][12]&#xD;
&#xD;
&#xD;
![formulas][13]&#xD;
&#xD;
&#xD;
![formulas][14]&#xD;
&#xD;
&#xD;
![formulas][15]&#xD;
&#xD;
&#xD;
![formulas][16]&#xD;
&#xD;
&#xD;
![formulas][17]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=.jpg&amp;amp;userId=2483773&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_2.jpg&amp;amp;userId=2483773&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_3.jpg&amp;amp;userId=2483773&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_4.jpg&amp;amp;userId=2483773&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_5.jpg&amp;amp;userId=2483773&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_6.jpg&amp;amp;userId=2483773&#xD;
  [7]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_7.jpg&amp;amp;userId=2483773&#xD;
  [8]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_8.jpg&amp;amp;userId=2483773&#xD;
  [9]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_9.jpg&amp;amp;userId=2483773&#xD;
  [10]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_10.jpg&amp;amp;userId=2483773&#xD;
  [11]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_11.jpg&amp;amp;userId=2483773&#xD;
  [12]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_12.jpg&amp;amp;userId=2483773&#xD;
  [13]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_13.jpg&amp;amp;userId=2483773&#xD;
  [14]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_14.jpg&amp;amp;userId=2483773&#xD;
  [15]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_15.jpg&amp;amp;userId=2483773&#xD;
  [16]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_16.jpg&amp;amp;userId=2483773&#xD;
  [17]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1700779780978-a2568bef-9e72-4f89-bfb7-ae5cc3ceb5b0_17.jpg&amp;amp;userId=2483773</description>
    <dc:creator>Michele Nardelli</dc:creator>
    <dc:date>2023-11-23T23:11:49Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3000913">
    <title>Step-By-Step Sums and Subtractions of Quantity in Wolfram|Alpha</title>
    <link>https://community.wolfram.com/groups/-/m/t/3000913</link>
    <description>The number of Step-by-Step explanations in Wolfram|Alpha has been getting larger and larger. One of the latest step by step solutions we have been providing is the addition and subtraction of quantities. This includes working with quantities with different units of measurement, handling of decimal points and doing unit conversions. &#xD;
Let&amp;#039;s look over at some of this new functionalities.&#xD;
&#xD;
Let&amp;#039;s start with a straightforward example: the sums of 2 meters and 3 meters:&#xD;
![enter image description here][1]&#xD;
&#xD;
## Summing Quantities with Different Units of Measurements  ##&#xD;
&#xD;
One of the most common issues that one encounters when summing physical quantities is summing quantities which have the same physical dimension (e.g., Length, Time, Mass) but different units of measurement, for example, such as feet and meters. &#xD;
Wolfram|Alpha provides steps for getting the result in any of the units that appears in the input. Are you summing meters and feet? We&amp;#039;ll return a step-by-step solution for the end unit in meters and another with the end unit in feet.&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
## Decimal Quantities  ##&#xD;
&#xD;
A lot of real world calculations requires working with quantities that have decimal and significant digits. Here for example we are subtracting 12 astronomical units to 3.5 parsecs:&#xD;
&#xD;
&#xD;
![enter image description here][4]&#xD;
&#xD;
## Sum and Subtraction of Multiple Quantities  ##&#xD;
&#xD;
The step-by-step addition and subtraction of quantities can be extended to sum of more than two numbers!&#xD;
&#xD;
An example of this below. As you can see you can choose the result to be in any of the units appearing in the sum:&#xD;
&#xD;
![enter image description here][5]&#xD;
&#xD;
## Conclusion  ##&#xD;
We hope this new functionality will help you when studying or for checking your calculations. Stay tuned for upcoming posts, such as exploring how to perform multiplication of quantities Step-by-Step.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2023-08-24at18.01.23.png&amp;amp;userId=2940410&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2023-08-25at16.37.40.png&amp;amp;userId=2940410&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2023-08-25at16.37.58.png&amp;amp;userId=2940410&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2023-08-25at16.43.54.png&amp;amp;userId=2940410&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2023-08-25at16.50.29.png&amp;amp;userId=2940410</description>
    <dc:creator>Daniele Ceravolo</dc:creator>
    <dc:date>2023-08-29T10:03:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2936605">
    <title>Clases de Mathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/2936605</link>
    <description>instrucciones de wolfram</description>
    <dc:creator>Lorena Casillas</dc:creator>
    <dc:date>2023-06-12T23:37:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2840816">
    <title>Recurring numbers</title>
    <link>https://community.wolfram.com/groups/-/m/t/2840816</link>
    <description>These are the so-called &amp;#034;recurring numbers&amp;#034;, which result from analyzing various equations of that sector of mathematics studied by Srinivasa Ramanujan (Theory of Numbers) and various equations of various sectors of Theoretical Physics (String Theory) and of Theoretical Cosmology (Black Holes and cosmological inflation)&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
&#xD;
 &#xD;
&#xD;
&#xD;
 &#xD;
 &#xD;
&#xD;
 &#xD;
 &#xD;
&#xD;
 &#xD;
&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
&#xD;
![enter image description here][4]&#xD;
&#xD;
&#xD;
![enter image description here][5]&#xD;
&#xD;
&#xD;
![enter image description here][6]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1270Immagine1.png&amp;amp;userId=2483773&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=8411Immagine2.png&amp;amp;userId=2483773&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=8715Immagine3.png&amp;amp;userId=2483773&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=10443Immagine4.png&amp;amp;userId=2483773&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Immagine5.png&amp;amp;userId=2483773&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Immagine6.png&amp;amp;userId=2483773</description>
    <dc:creator>Michele Nardelli</dc:creator>
    <dc:date>2023-02-28T12:18:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2823806">
    <title>Using vector variables and changing variables in ODEs</title>
    <link>https://community.wolfram.com/groups/-/m/t/2823806</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/ea736d97-ac0b-42f9-b87d-bc5902508eda</description>
    <dc:creator>Peter Burbery</dc:creator>
    <dc:date>2023-02-04T15:36:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2823601">
    <title>ChatGPT as a WolframAlpha input generator</title>
    <link>https://community.wolfram.com/groups/-/m/t/2823601</link>
    <description>This is a ChatGPT prompt so that it acts as a WolframAlpha input generator:&#xD;
&#xD;
&amp;gt; I want you to act as a WolframAlpha input generator, providing me&#xD;
&amp;gt; with questions and queries to input into WolframAlpha. Your responses&#xD;
&amp;gt; should be well-formed, complete, and formatted in a way that would&#xD;
&amp;gt; provide the most accurate and helpful results from WolframAlpha. The&#xD;
&amp;gt; answers should not include any explanations or additional information,&#xD;
&amp;gt; only the formatted query for WolframAlpha. Let&amp;#039;s start with a simple&#xD;
&amp;gt; one, what is the population of Paris?</description>
    <dc:creator>Icy Toc</dc:creator>
    <dc:date>2023-02-03T20:49:42Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2771372">
    <title>Cost of UBI for G7 nations</title>
    <link>https://community.wolfram.com/groups/-/m/t/2771372</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/12acc62b-9fb8-47b3-b562-1ada678dd8dd</description>
    <dc:creator>Eliza Kishan</dc:creator>
    <dc:date>2023-01-09T18:44:51Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2472931">
    <title>Showing WL numerical computations built-in functions in Wolfram|Alpha</title>
    <link>https://community.wolfram.com/groups/-/m/t/2472931</link>
    <description>For numerical analysis calculations, it would be good to display the results of applying the numerical analysis functions built into Wolfram, such as NSolve, NIntegrate, and NSum.</description>
    <dc:creator>지성 김</dc:creator>
    <dc:date>2022-02-16T11:57:53Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2424580">
    <title>Stars at Brazil flag semantics</title>
    <link>https://community.wolfram.com/groups/-/m/t/2424580</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/5a0934c7-8bde-49b1-b3d8-9849b45c2163</description>
    <dc:creator>Daniel Carvalho</dc:creator>
    <dc:date>2021-12-14T17:32:31Z</dc:date>
  </item>
</rdf:RDF>

