<?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 sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3666749" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3662573" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3659892" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3632161" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3604903" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3604186" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3599693" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3246264" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3590142" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3542971" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3576418" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3573049" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2843135" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/907853" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3481794" />
        <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/3538004" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3531759" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3528276" />
      </rdf:Seq>
    </items>
  </channel>
  <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/3662573">
    <title>WolframAlpha, step-by-step returns Missing</title>
    <link>https://community.wolfram.com/groups/-/m/t/3662573</link>
    <description>Please note that as of very recently, this no longer works:&#xD;
&#xD;
    WolframAlpha[&amp;#034;integral (E^(cos x))((cos x)^2)(sin x) dx&amp;#034;,&#xD;
        {{&amp;#034;IndefiniteIntegral&amp;#034;, 2}, &amp;#034;Content&amp;#034;},&#xD;
        PodStates -&amp;gt; {&amp;#034;IndefiniteIntegral__Step-by-step solution&amp;#034;}]&#xD;
&#xD;
as it pruduces: `Missing[&amp;#034;NotAvailable&amp;#034;]`.&#xD;
&#xD;
After hours of searching, I stumbled on a solution/workaround.&#xD;
&#xD;
First note that the middle line:&#xD;
&#xD;
    {{&amp;#034;podid&amp;#034;,subpodid},&amp;#034;property&amp;#034;}&#xD;
&#xD;
is ostensibly not necessary (I will return it later), so one can invoke:&#xD;
&#xD;
    WolframAlpha[&amp;#034;integral (E^(cos x))((cos x)^2)(sin x) dx&amp;#034;,&#xD;
        PodStates -&amp;gt; {&amp;#034;IndefiniteIntegral__Step-by-step solution&amp;#034;}]&#xD;
&#xD;
This provides the step-by-step solution, however all of the pods are now there. In addition, one would need to click on &amp;#034;Show all steps&amp;#034; for all of them to appear. Sometimes the button is &amp;#034;Show step-by-step solution,&amp;#034; and then another button for showing all steps.&#xD;
&#xD;
Apparently, due to these extra buttons, WRI added (did I miss the memo?) an undocumented `PodState` of `&amp;#034;IndefiniteIntegral__Show all steps&amp;#034;` (or for other podids: `&amp;#034;Result__Show all steps&amp;#034;`, etc.). This solves the &amp;#034;button&amp;#034; problem, however all of the pods are still present.&#xD;
&#xD;
So we return the `{{&amp;#034;podid&amp;#034;,subpodid},&amp;#034;property&amp;#034;}` line, however we do not want only the `subpodid` of 2, but rather all of them. Putting this all together, and wrapping it in a `Column[]` in order to space things out a bit vertically, we have:&#xD;
&#xD;
    Column[&#xD;
        WolframAlpha[&#xD;
            &amp;#034;integral (E^(cos x))((cos x)^2)(sin x) dx&amp;#034;,&#xD;
            {{&amp;#034;IndefiniteIntegral&amp;#034;, All}, &amp;#034;Content&amp;#034;},&#xD;
            PodStates -&amp;gt; {&#xD;
                &amp;#034;IndefiniteIntegral__Step-by-step solution&amp;#034;,&#xD;
                &amp;#034;IndefiniteIntegral__Show all steps&amp;#034;&#xD;
            }&#xD;
        ][[All, 2]],&#xD;
        Left,&#xD;
        2&#xD;
    ]</description>
    <dc:creator>Aaron Naiman</dc:creator>
    <dc:date>2026-03-15T12:07:57Z</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/3632161">
    <title>Problem generator not working?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3632161</link>
    <description>I was trying to use the problem generator to generate some calculus problems however whenever I entire the site I just get a white screen and there is no GUI whatsoever I’ve tried checking online about this however I haven’t found anything I’ve also tried a number of troubleshooting options with no success does anyone know what’s going on?</description>
    <dc:creator>kayson vidal</dc:creator>
    <dc:date>2026-02-01T20:35:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3604903">
    <title>Modulo reduction of input for trigonometric functions</title>
    <link>https://community.wolfram.com/groups/-/m/t/3604903</link>
    <description>For reducing such input from a range (-infinity; +infinity) to the target interval (-π; +π] on which trigonometric functions shall operate, the original input must be taken modulo 2π. Performance of such a modulo reduction on limited hardware systems depends on the number of digits you provide for 2π. Said number may be in the order of some hundred to some thousand. How can I specify this number for WolframAlpha?&#xD;
&#xD;
WolframAlpha understands my request to give me, e.g., 700 digits of 2π and returns them properly. But if and when I try to compute a given real number modulo (700 digits of 2π) it fails to decode my wish and, alas, doesn&amp;#039;t advise me what to do instead. Any hint in this matter is appreciated. Thanks in advance.</description>
    <dc:creator>Walter Bonin</dc:creator>
    <dc:date>2026-01-11T23:23:02Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3604186">
    <title>Visualizing derivative logic: chain rule decompositions vs. symbolic solvers</title>
    <link>https://community.wolfram.com/groups/-/m/t/3604186</link>
    <description>Hello Community,I’ve been exploring different ways to teach the &amp;#034;Chain Rule&amp;#034; to students who find the standard Leibniz notation $dy/dx = dy/du \cdot du/dx$ a bit abstract when applied to nested functions like $f(g(h(x)))$.While `D[f[g[x]], x]` in Wolfram Language gives the perfect result instantly, I’ve found that students often benefit from seeing a &amp;#034;Step Tree&amp;#034; or a &amp;#034;Decomposition Table&amp;#034; to understand which rule is being applied at which depth. I’ve been building a project to automate this specific pedagogical breakdown: [Derivative Calculus Solver][1]. It focuses on showing the intermediate &amp;#034;substitution&amp;#034; steps that occur before reaching the final simplified form.My Question: &amp;gt; When handling highly nested functions, do you find it more effective to teach the &amp;#034;Inside-Out&amp;#034; method (starting with the innermost function) or the &amp;#034;Outside-In&amp;#034; (the standard Power/Chain rule approach)?For example, in the following WL code, the result is clear, but the &amp;#034;logic path&amp;#034; can be interpreted in two ways:Code snippet(* A nested example for discussion *)&#xD;
&#xD;
    f[x_] := Cos[Log[x^2 + 1]]^3&#xD;
    D[f[x], x] // TraditionalForm&#xD;
&#xD;
I’ve tried to align the logic on my site with the `WolframAlpha[&amp;#034;derivative of...&amp;#034;, &amp;#034;Steps&amp;#034;]` output, but I’m curious if the community has thoughts on how to better visualize &amp;#034;partial results&amp;#034; for students who get lost in the algebra. Looking forward to your insights!&#xD;
&#xD;
&#xD;
  [1]: https://www.derivativecalculus.com/</description>
    <dc:creator>Mian Muhammad ASGHAR</dc:creator>
    <dc:date>2026-01-10T17:46:41Z</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/3246264">
    <title>WolframAlpha not working on Data Drop Databins</title>
    <link>https://community.wolfram.com/groups/-/m/t/3246264</link>
    <description>When submitting a Data Drop Databin for processing with WolframAlpha, I am only getting an ad for Data Drop rather than an analysis of the data (see screenshot). Broken?&#xD;
&#xD;
![Screenshot of WolframAlpha showing an ad link for Data Drop instead of an analysis of the data in the Databin][1]&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2024-08-11at8.43.54%E2%80%AFPM.png&amp;amp;userId=3066008</description>
    <dc:creator>Steven Buehler</dc:creator>
    <dc:date>2024-08-12T00:46:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3590142">
    <title>Modeling food physics with Wolfram|Alpha from Maillard reactions to emulsions</title>
    <link>https://community.wolfram.com/groups/-/m/t/3590142</link>
    <description>&amp;amp;[Wolfram Notebook][1]&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframcloud.com/obj/38d38de1-d936-4ebd-a3f7-5a54ce879d4f</description>
    <dc:creator>Gay Wilson</dc:creator>
    <dc:date>2025-12-12T19:59:51Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3542971">
    <title>[WUCB-2024] Conferência de usuários Wolfram 2025 - Brasil</title>
    <link>https://community.wolfram.com/groups/-/m/t/3542971</link>
    <description>![enter image description here][1]&#xD;
&#xD;
Save the date: Saturday, November 8, 2025&#xD;
&#xD;
Communication - Wolfram User Conference 2025 - Brazil (WUCB-2025)&#xD;
&#xD;
To answer questions, share and learn more about Wolfram tech at the &amp;#034;Conferência de usuários Wolfram 2025 - Brasil&amp;#034; and hackathon send your message here...&#xD;
&#xD;
Conference date: November 8, 2025 (Saturday) from 9:00 pm to 5:00 pm (GMT-3 - São Paulo, SP, Brazil) at Universidade Presbiteriana Mackenzie&#xD;
&#xD;
Online Brazilian HACKATON starting: Saturday, November 8 to Monday, November, 17, 2025, online&#xD;
&#xD;
To submit a talk (30 min) send title and abstract (250-300 words) to: brazil_2025@wolfram.com&#xD;
&#xD;
Website and more details coming soon...&#xD;
&#xD;
----------&#xD;
&#xD;
FOR PORTUGUESE READERS:&#xD;
&#xD;
Comunicação - Conferência de usuários Wolfram 2025 - Brasil (WUCB-2025)&#xD;
&#xD;
Para tirar dúvidas, compartilhar e saber mais sobre a tecnologia Wolfram e a &amp;#034; Conferência de usuários Wolfram 2025 - Brasil&amp;#034; e hackathon mande sua mensagem aqui...&#xD;
&#xD;
Data da conferência: Dia 8 de novembro de 2025 (Sábado) das 09:00 as 17:00 em São Paulo, SP, Brasil, na Universidade Presbiteriana Mackenzie&#xD;
&#xD;
Hackathon on-line: Dia 8 de novembro até a 17 de novembro de 2025&#xD;
&#xD;
Para submeter uma palestra (30 min) envie o título e abstract (250-300 palavras) para: brazil_2025@wolfram.com&#xD;
&#xD;
Website e mais detalhes em breve...&#xD;
&#xD;
Dicas para inspiração:&#xD;
&#xD;
 - Para se inspirar use o [Wolfram Language Hackathon][2] tech&#xD;
 - Ou veja os aplicativos disponíveis no [Product Hunt][3] projetos podem ser&#xD;
   prototipados e extendidos com a tecnologia Wolfram de forma muito&#xD;
   produtiva&#xD;
 - Expore um problema usando [ciências dos dados][4].&#xD;
 - Use ferramentas avançadas de [Inteligência Artificial][5] (IA)&#xD;
 - Explore visualizações interativas e código no [Wolfram Demonstration Project][6]&#xD;
 - E também exemplos de projetos em Wolfram Community [Staff Picks][7].&#xD;
&#xD;
Acompanhe a Wolfram Brasil nas mídias sociais:&#xD;
&#xD;
 - https://www.facebook.com/WolframResearchBrazil&#xD;
 - https://www.instagram.com/wolframbrazil/&#xD;
&#xD;
**Novo** endereço do evento para 2025:&#xD;
&#xD;
 - Universidade Presbiteriana Mackenzie&#xD;
 - Auditório Reverendo Wilson de Souza Lopes&#xD;
 - Rua Piauí 143, andar 11&#xD;
 - Higienópolis&#xD;
 - Dia 8 de novembro de 2025 (sábado)&#xD;
 - Das 9:00 às 17:00 horas&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=BR-CONF-2025-SAVE-DATE.png&amp;amp;userId=68072&#xD;
  [2]: https://www.wolfram.com/hackathons/&#xD;
  [3]: https://www.producthunt.com/&#xD;
  [4]: https://www.wolfram.com/wolfram-u/multiparadigm-data-science/&#xD;
  [5]: https://www.wolfram.com/resources/tools-for-AIs/&#xD;
  [6]: https://demonstrations.wolfram.com/&#xD;
  [7]: https://community.wolfram.com/content?curTag=staff%20picks</description>
    <dc:creator>Daniel Carvalho</dc:creator>
    <dc:date>2025-09-09T23:39:53Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3576418">
    <title>Wolfram|Alpha expression for the indefinite integral ∫ ln(x+f)/(x+a) dx is not always valid?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3576418</link>
    <description>Asked for the indefinite integral&#xD;
&#xD;
    ⌠ln(x+f)&#xD;
    ⎮─────── dx&#xD;
    ⌡  x+a&#xD;
Wolfram|Alpha returns&#xD;
&#xD;
              ⎛  f+x⎞              ⎛a+x⎞&#xD;
    I(x) ≡ Li₂⎜- ───⎟ + log(f+x)log⎜───⎟ + const.&#xD;
              ⎝  a-f⎠              ⎝a-f⎠&#xD;
&#xD;
For `a = 1.2 - 3.4*i` and `f = 5.6 - 7.8*i`, computing the definite integral between x=2.1 and x=2.3 using this expression yields `I(2.3) - I(2.1) = -4.8411 - 11.4393 i`, as shown [here][1].  But, if instead Wolfram|Alpha is queried directly for the definite integral between x=2.1 and x=2.3, it returns `0.0937041 + 0.0475201 i`, as shown [here][2].  What is going on?&#xD;
&#xD;
The two methods of evaluation seem to agree for other integration bounds.  E.g., for the integral between x=2.3 and x=2.5, both query types yield `0.0922966 + 0.0442528 i`, as shown [here][3] and [here][4].&#xD;
&#xD;
Does anyone know what&amp;#039;s happening for the integral between x=2.1 and x=2.3?  I&amp;#039;m surprised that Wolfram|Alpha doesn&amp;#039;t provide a robust answer as the integral in question arises in the fairly prosaic context of evaluating&#xD;
&#xD;
              Re(f)&#xD;
    ⌠     1  ⌠              1&#xD;
    ⎮ dx ─── ⎮      dy ───────────&#xD;
    ⌡    x+a ⌡         x+y+i*Im(f)&#xD;
&#xD;
&#xD;
&#xD;
  [1]: https://www.wolframalpha.com/input?i=%20a%20=%201.2%20-%203.4*i;%20f%20=%205.6%20-%207.8*i;%20x_1=2.1,%20x_2=2.3;%20%28log%28%28a%20%2b%20x_2%29/%28a%20-%20f%29%29%20log%28f%20%2b%20x_2%29%20%2b%20Li_2%28-%28f%20%2b%20x_2%29/%28a%20-%20f%29%29%29%20-%20%28log%28%28a%20%2b%20x_1%29/%28a%20-%20f%29%29%20log%28f%20%2b%20x_1%29%20%2b%20Li_2%28-%28f%20%2b%20x_1%29/%28a%20-%20f%29%29%29&#xD;
  [2]: https://www.wolframalpha.com/input?i=integral%20from%202.1%20to%202.3%20of%20ln%28x%2b5.6%20-%207.8*i%29/%28x%2b1.2%20-%203.4*i%29%20dx&#xD;
  [3]: https://www.wolframalpha.com/input?i=%20a%20=%201.2%20-%203.4*i;%20f%20=%205.6%20-%207.8*i;%20x_1=2.3,%20x_2=2.5;%20%28log%28%28a%20%2b%20x_2%29/%28a%20-%20f%29%29%20log%28f%20%2b%20x_2%29%20%2b%20Li_2%28-%28f%20%2b%20x_2%29/%28a%20-%20f%29%29%29%20-%20%28log%28%28a%20%2b%20x_1%29/%28a%20-%20f%29%29%20log%28f%20%2b%20x_1%29%20%2b%20Li_2%28-%28f%20%2b%20x_1%29/%28a%20-%20f%29%29%29&#xD;
  [4]: https://www.wolframalpha.com/input?i=integral%20from%202.3%20to%202.5%20of%20ln%28x%2b5.6%20-%207.8*i%29/%28x%2b1.2%20-%203.4*i%29%20dx</description>
    <dc:creator>Brent Page</dc:creator>
    <dc:date>2025-11-16T23:18:19Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3573049">
    <title>Instant food collages in 108 characters</title>
    <link>https://community.wolfram.com/groups/-/m/t/3573049</link>
    <description>![enter image description here][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=1147hero.png&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/7e28e9f0-a042-4d25-8af5-7475ec706f1b</description>
    <dc:creator>Gay Wilson</dc:creator>
    <dc:date>2025-11-10T17:42:04Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2843135">
    <title>Query on food nutrition Label in Cloud notebook</title>
    <link>https://community.wolfram.com/groups/-/m/t/2843135</link>
    <description>I have created a notebook on could as follows:&#xD;
&#xD;
&amp;gt; = Food Nutrition Label: Apple. In the output Nutrition Facts label has appeared.&#xD;
&#xD;
I have published the same. I have used the iframe in html. The same output is appearing in webpage.&#xD;
&#xD;
&amp;gt;   &amp;lt;section class=&amp;#034;py-2&amp;#034; id=&amp;#034;Types&amp;#034;&amp;gt;&#xD;
&amp;gt;     &amp;lt;div class=&amp;#034;container&amp;#034;&amp;gt;&#xD;
&amp;gt;       &amp;lt;iframe width=&amp;#039;800&amp;#039; height=&amp;#039;400&amp;#039; src=&amp;#039;https://www.wolframcloud.com/obj/modakindia/Published/apple.nb&amp;#039;&#xD;
&amp;gt; frameborder=&amp;#039;0&amp;#039;&amp;gt;&amp;lt;/iframe&amp;gt;&#xD;
&amp;gt;     &amp;lt;/div&amp;gt;   &amp;lt;/section&amp;gt;&#xD;
&#xD;
Screenshot for more accurate html&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
The output is available in the link below.&#xD;
&#xD;
[https://nourishbodymind.blogspot.com/2023/02/crunch-into-juicy-sweetness-of-apples.html][2]&#xD;
&#xD;
I have some queries on the above.&#xD;
&#xD;
1. The Label is not appearing in mobile screen as well.&#xD;
2. The font size is not displaying properly due to large size.&#xD;
3. All the values are not displaying which I got in the gadget &amp;#034;Food Nutrition Label&amp;#034;.&#xD;
&#xD;
Need help.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2023-03-03140601.jpg&amp;amp;userId=20103&#xD;
  [2]: https://nourishbodymind.blogspot.com/2023/02/crunch-into-juicy-sweetness-of-apples.html</description>
    <dc:creator>Swarup Modak</dc:creator>
    <dc:date>2023-03-03T07:02:18Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/907853">
    <title>Solve &amp;#034;What do these words have in common&amp;#034; type questions in Wolfram|Alpha?</title>
    <link>https://community.wolfram.com/groups/-/m/t/907853</link>
    <description>Can Wolfram solve these kind of &amp;#034;What do these words have in common&amp;#034; questions?  For example given the words &amp;#034;Escape, Stall, Cradle, Press, Balance&amp;#034;; can it tell me that &amp;#034;They are all Wrestling Moves&amp;#034;?&#xD;
&#xD;
  More examples...&#xD;
&#xD;
Q: Alchemy, Spell, Owl, Backstage, Mermaid, Squib, Scar, Usher, Gnome, &#xD;
&#xD;
A: Harry Potter and the Cursed Child&#xD;
&#xD;
Q: Emergency, Soap, Bones, Drive&#xD;
&#xD;
A: TV Shows&#xD;
&#xD;
Q: Torch, Tubes, Flashlight&#xD;
&#xD;
A: Spelunking&#xD;
&#xD;
Q: Full, Green, Halfway, Light, Tree, Ware&#xD;
&#xD;
A: They are all types of houses.&#xD;
&#xD;
Q: Arduous, Knight, Dragon, Chest, Map&#xD;
&#xD;
A: Quest&#xD;
&#xD;
Q: Flower, Tern, Thirsty&#xD;
&#xD;
A: Remove one letter from each word and they all spell a numeral.&#xD;
&#xD;
Q: Common, Friend, Pastry, Portable, Remote, Varnish&#xD;
&#xD;
A: If you take the &amp;#034;R&amp;#034; out, they still spell a word.&#xD;
&#xD;
Q: Banana, Dresser, Grammar, Potato, Revive, Uneven, Assess&#xD;
&#xD;
A: If you move the first letter to the end of the word, it forms the same word backwards. Banana = ananab, dresser = resserd, and so on.&#xD;
&#xD;
Q: Boro Bow Fluff Know Pickup Scoff Shoe Taut&#xD;
&#xD;
A: Rhyme with words that have different pronunciations of ough. Borough, bough, enough, dough, hiccough (hiccup), cough, through, bought.&#xD;
&#xD;
Q: Bother, Favorite, Mistake, Pastry, Portable, Product&#xD;
&#xD;
A: Each term contains two adjacent words if you allow the last letter of the first word to be the first letter of the last word. (i.e. bother = both + her; favorite = favor + rite; mistake = mist + take; pastry = past + try; portable = port + table; product = prod + duct)</description>
    <dc:creator>WordsIn Common</dc:creator>
    <dc:date>2016-08-18T22:41:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3481794">
    <title>In Memory of Michael Trott (1959-2025): Scientist, Mentor, Friend</title>
    <link>https://community.wolfram.com/groups/-/m/t/3481794</link>
    <description>![enter image description here][1]&#xD;
&#xD;
Michael Trott was more than a brilliant scientist, he was a mentor, a friend, and a truly unique human being. For those of us lucky enough to work closely with him, his absence leaves a deep void. He brought an irreplaceable blend of curiosity, creativity, and humility to everything he did. Our long meetings, where we&amp;#039;d dive into unconventional ideas in physics and find ways to implement them in Mathematica, often stretched past hours, but no one ever minded. With Michael, even the most abstract idea could spark a new direction, a novel prototype, or an unexplored corner of science.&#xD;
&#xD;
He didn&amp;#039;t just think outside the box, he rebuilt it entirely, quietly and kindly. His codes weren&amp;#039;t always optimized for performance, but they were original and beautiful. I have never seen anyone so professional in prototyping novel ideas computationally; and this was our joint passion for Mathematica, as we believed it is one of the best tool, if not the best, for this purpose.  One can find a few examples of Michael&amp;#039;s style of thinking in the [Wolfram Blog][2], [Wolfram Demonstration Project][3], or [Wolfram Community][4]. He was also the author of four seminal books: &amp;#034;[The Mathematica GuideBooks][5]&amp;#034; (four volumes).&#xD;
&#xD;
He had a deep grasp of the history and architecture of Mathematica, with a passion for physics, especially quantum theory, and a genius for applying technology in unexpected ways. Michael Trott joined Wolfram Research in 1994 and was a cornerstone of the company for over 30 years. As Chief Scientist of Wolfram|Alpha, his fingerprints are on thousands of algorithms and innovations, from computational art to physical constants, from parsing human input to building bridges between theoretical physics and computation. The [Wolfram Quantum Framework][6], as a small example, would not have been possible without his support and contributions.&#xD;
&#xD;
Michael was encyclopedic in knowledge, yet endearingly humble. He read hundreds of papers, built massive daily digests on LLMs, mentored researchers across physics, math, and engineering; and still worried whether he had anything &amp;#034;original&amp;#034; to offer before a scheduled talk at the University of Vienna (see the material he&amp;#039;d prepared for this talk from [this link][7]; we even had a dry-run together, to discuss the content repeatedly). His presence was magnetic. He showed up early to Zoom calls (Wolfram Research has many remote employees, including myself, even before COVID pandemic) and sparked thoughtful conversation before meetings began. He didn&amp;#039;t just build things but he shared them generously. He brought humanity to everything he touched. Whether discussing quantum fields or life under East Germany&amp;#039;s Stasi, he made space for your story too. He helped others grow, quietly and consistently, always leading by example.&#xD;
&#xD;
Toward the end, we spoke about the multiverse; you were certain we&amp;#039;d meet again. In those final days, lying in your hospital bed, we found ourselves deep in conversation about the quantum-to-classical transition and nonlinearities. Thank you, Michael, for everything. You showed so many of us what it truly means to be both a scientist and a human being.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-06-18at9.36.32%E2%80%AFPM.png&amp;amp;userId=1539902&#xD;
  [2]: https://blog.wolfram.com/author/michael-trott/&#xD;
  [3]: https://demonstrations.wolfram.com/authors/michael-trott&#xD;
  [4]: https://community.wolfram.com/web/mtrott&#xD;
  [5]: https://www.amazon.com/stores/author/B001ITTUVM/allbooks&#xD;
  [6]: https://resources.wolframcloud.com/PacletRepository/resources/Wolfram/%5C%20QuantumFramework/&#xD;
  [7]: https://amoeba.wolfram.com/index.php/s/Jbrt4q6cYTN7rC7</description>
    <dc:creator>Mohammad Bahrami</dc:creator>
    <dc:date>2025-06-19T04:38:05Z</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/3538004">
    <title>Rounding a number to a specific significant figure in Wolfram Alpha is not working properly</title>
    <link>https://community.wolfram.com/groups/-/m/t/3538004</link>
    <description>Rounding a number to a specific significant figure is not working properly. For example, 1.264911064 to 3 sf results in 1.26491. This problem/bug is recent I guess, because in the past I got correct answers of rounding to sf.</description>
    <dc:creator>Tanvir Zawad</dc:creator>
    <dc:date>2025-08-30T13:44:09Z</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/3528276">
    <title>How can I get the calculation result to show as a percentage?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3528276</link>
    <description>If I enter 2.1/(89.5+2.1+1.9+1.6+8.3+1987.0+259.7+7855.4)×100%= , my goal is to display the result as a percentage, but the webpage calculation result does not show the percentage and is not intelligent. I hope that when the calculation result involves a percentage, an additional percentage display can be added. &#xD;
How can I get the calculation result to show as a percentage, such as 0.021% ?&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=2025-08-11_11-33-01.png&amp;amp;userId=3528242</description>
    <dc:creator>Jeff Li</dc:creator>
    <dc:date>2025-08-11T03:35:03Z</dc:date>
  </item>
</rdf:RDF>

