<?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 Authoring and Publishing sorted by active.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3718371" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3706475" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3645383" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3569513" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2090703" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3534450" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3517873" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3519668" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3515353" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3495300" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3450713" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3443223" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3411582" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3410217" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2606866" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3311810" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3314147" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3302546" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3114507" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3110587" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3718371">
    <title>Lost in translation: auditing the nuance gap between any two renderings &amp;#x2014; scripture, news, treaties</title>
    <link>https://community.wolfram.com/groups/-/m/t/3718371</link>
    <description>![Lost in translation: auditing the nuance gap between any two renderings &amp;#x2014; scripture, news, treaties][1]&#xD;
&#xD;
**Figure.** Cover. Every translation is a choice. This notebook turns those choices into a number you can rank, a chart you can read, and an LLM commentary you can quote.&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Lostintranslation.jpg&amp;amp;userId=20103&#xD;
  [2]: https://www.wolframcloud.com/obj/f6823ae6-0025-4931-b84d-eb693804ce28</description>
    <dc:creator>Marco Thiel</dc:creator>
    <dc:date>2026-05-19T10:39:25Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3706475">
    <title>[BOOK] Getting Started with Modelica</title>
    <link>https://community.wolfram.com/groups/-/m/t/3706475</link>
    <description>![Getting Started with Modelica][1]&#xD;
&#xD;
I&amp;#039;m excited to share that my new book, **Getting Started with Modelica**, is now available on Amazon.&#xD;
&#xD;
&amp;gt;[**Amazon Page**][2]&#xD;
&#xD;
**Who is it for?**&#xD;
&#xD;
Engineers and students taking their first serious steps with Modelica. No prior Modelica experience required. If you are already using System Modeler for drag-and-drop modeling and want to understand what is happening under the hood, or start writing your own textual models, this book is for you.&#xD;
&#xD;
**What does it cover?**&#xD;
&#xD;
The essentials you need to go from zero to writing and reading Modelica code. Acausal modeling and connectors, the Modelica Standard Library, inheritance, events, arrays, functions, records, solver internals, and FMI. By the end, you will be able to read code from the Modelica Standard Library, write your own models, and diagnose common problems independently.&#xD;
&#xD;
**Why does it matter in the age of LLMs?**&#xD;
&#xD;
LLMs can generate Modelica. But spotting when it&amp;#039;s wrong takes a human who understands the language. This book builds that understanding.&#xD;
&#xD;
# Selected Figures from the Book&#xD;
&#xD;
## 1. Why Modelica? &amp;#x2014; multi-domain systems&#xD;
&#xD;
![enter image description here][3]  &#xD;
*Multi-domain system: battery, fluid/thermal, and control logic coupled in a single model.*&#xD;
&#xD;
Real systems rarely live in one physical domain. An EV battery&amp;#039;s state-of-charge depends on its temperature, which depends on the coolant loop, which depends on the control logic that watches both. Modelica lets you describe each domain in its own language &amp;#x2014; electrical, thermal, fluid, control &amp;#x2014; and assemble them in one simulation, with the coupling at the boundaries handled by the connectors.&#xD;
&#xD;
## 2. Causal vs. acausal modeling&#xD;
&#xD;
![enter image description here][4]  &#xD;
*Causal approach requires two separate models; one acausal Modelica model handles both naturally.*&#xD;
&#xD;
This is the single image that captures what makes Modelica different. A signal-based tool freezes the direction of information flow at design time, so a motor and a generator are two different models even though the physics is identical. In Modelica you write the equations once; the compiler decides at solve time whether torque is the input or the output, based on how the component is connected. The same DC machine model handles motoring and regeneration &amp;#x2014; no manual switching, no duplication.&#xD;
&#xD;
## 3. Hybrid simulation: continuous + discrete&#xD;
&#xD;
![enter image description here][5]  &#xD;
*Thermostat simulation: continuous temperature dynamics and discrete switching in one run.*&#xD;
&#xD;
Real engineering systems mix smooth continuous physics with sharp discrete events: a valve opens, a relay clicks, a controller switches mode. Modelica handles both natively &amp;#x2014; the solver pauses cleanly at each event, applies any state changes, and resumes. Here the water heats up continuously while a discrete control signal toggles the heater on and off around the setpoint, all inside the same simulation.&#xD;
&#xD;
## 4. The bouncing ball &amp;#x2014; events done right&#xD;
&#xD;
![enter image description here][6]  &#xD;
*Bouncing ball height: each arc lower than the last as energy is lost to the restitution coefficient.*&#xD;
&#xD;
The bouncing ball is the canonical event-handling test in any simulation language. The solver follows ballistic flight, detects each ground impact as a zero-crossing, reinitializes the velocity through Modelica&amp;#039;s `reinit()` operator, and continues. The energy loss per bounce is captured in a single coefficient of restitution &amp;#x2014; no special-case code, no workarounds.&#xD;
&#xD;
## 5. Why event handling matters&#xD;
&#xD;
![enter image description here][7]  &#xD;
*Modelica stops at discontinuities and handles them explicitly; signal-based tools approximate them as steep smooth curves.*&#xD;
&#xD;
A common workaround in signal-based tools is to model a switch as a steep sigmoid. It looks tidy, but the steep gradient forces the integrator into tiny time steps and can cause solver failures at extreme parameter values. Modelica represents the discontinuity honestly &amp;#x2014; the solver stops, re-initializes, and continues &amp;#x2014; which is both faster and numerically robust.&#xD;
&#xD;
&#xD;
## 6. Inheritance in the Modelica Standard Library&#xD;
&#xD;
![enter image description here][8]  &#xD;
*MSL Resistor inheritance chain: each level adds exactly one thing (connector, voltage difference, current conservation, Ohm&amp;#039;s law).*&#xD;
&#xD;
The Modelica Standard Library is built on disciplined object-oriented design. The Resistor doesn&amp;#039;t define its pins, voltage difference, or current bookkeeping &amp;#x2014; those are inherited from three abstract layers above it (`Pin`, `TwoPin`, `OnePort`). The concrete component contributes one equation: `v = R*i`. This is why MSL components compose so cleanly across thousands of models and dozens of domains.&#xD;
&#xD;
&#xD;
## 7. A real engineering example &amp;#x2014; heated pipe&#xD;
&#xD;
![enter image description here][9]  &#xD;
*The pipe system: fluid enters at T_in, loses heat through wall resistance R_wall to ambient T_ambient.*&#xD;
&#xD;
Chapter 10 builds a heated-pipe model from scratch over four stages, introducing one new concept at each step &amp;#x2014; geometry parameters, fluid properties, the energy balance, then heat loss to the environment. This sketch is the physical picture the model is built from. The pedagogy: start from a drawing of the physics, name the variables, then write the equations.&#xD;
&#xD;
&#xD;
## 8. Simulation result of the heated pipe&#xD;
&#xD;
![enter image description here][10]  &#xD;
*PipeSystem over 20 s: Re constant at ~12,700, Q_loss decreasing as T_fluid decays exponentially toward steady state.*&#xD;
&#xD;
The matching result plot for the model above. Three quantities tell a coherent story: Reynolds number stays in the turbulent regime throughout, the wall heat flux falls as the fluid cools, and the fluid temperature decays smoothly toward the ambient-influenced steady state. A clean separation of timescales &amp;#x2014; and exactly the kind of multi-variable readout System Modeler&amp;#039;s Simulation Center produces by default.&#xD;
&#xD;
&#xD;
## 9. Data integration &amp;#x2014; wind turbine&#xD;
&#xD;
![enter image description here][11]  &#xD;
*Full data chain: a CombiTimeTable feeds wind speed to both an efficiency lookup and a power block; their outputs multiply to give actual power.*&#xD;
&#xD;
Engineers often ask: &amp;#034;what do I do when I don&amp;#039;t have equations?&amp;#034; Many real components &amp;#x2014; heat pumps, compressors, rotor blades &amp;#x2014; are characterized by manufacturer curves or measurement data, not closed-form physics. Modelica&amp;#039;s `CombiTable` family lets you connect tabular data directly into the same diagram as your equation-based components, and the solver treats them consistently with everything else. Here, time-series wind speed flows into an efficiency curve and a cubic-power model, and the product is the turbine&amp;#039;s actual output.&#xD;
&#xD;
&#xD;
## 10. Inside the compiler &amp;#x2014; the symbolic preprocessing pipeline&#xD;
&#xD;
![enter image description here][12]  &#xD;
*The symbolic preprocessing pipeline: from hierarchical model to block triangular form, runs automatically at every compile.*&#xD;
&#xD;
When a Modelica tool compiles a model it isn&amp;#039;t just translating code &amp;#x2014; it&amp;#039;s performing a sequence of symbolic transformations: flattening the hierarchy, simplifying, reducing differentiation index, selecting state variables, building a bipartite dependency graph, finding a maximum matching, breaking strongly connected components, and emitting block-triangular code the numerical solver can step through. The user never sees this; the user just sees a model that runs.&#xD;
&#xD;
&#xD;
## 11. The bipartite graph behind every Modelica model&#xD;
&#xD;
![enter image description here][13]  &#xD;
*Maximum matching assigns each equation to the one variable it solves; the thick edges define the computation direction.*&#xD;
&#xD;
This is the moment a Modelica model becomes solvable. Equations and variables form a bipartite graph; an edge means &amp;#034;this variable appears in this equation.&amp;#034; A maximum matching pairs each equation with the unique variable it will be used to compute &amp;#x2014; turning an undirected web of relations into a directed computation order. The same picture, shown as an incidence matrix on the right, is how a sparse linear-algebra package would see it. (The kind of structure a Wolfram Language audience tends to enjoy.)&#xD;
&#xD;
&#xD;
## 12. FMI &amp;#x2014; Modelica&amp;#039;s tool-interoperability story&#xD;
&#xD;
![enter image description here][14]  &#xD;
*FMI as a universal connector: an FMU exported from any tool can be imported by any other FMI-compliant tool.*&#xD;
&#xD;
Once a model is built, the Functional Mock-up Interface (FMI) lets it cross tool boundaries. A Wolfram System Modeler component can be exported as an FMU, dropped into a Simulink controller study, embedded in a Python automation script, or run on dSPACE real-time hardware-in-the-loop. The simulation asset outlives any single tool &amp;#x2014; a real concern for long-lived models in aerospace, automotive, and energy.&#xD;
&#xD;
&#xD;
## 13. The Modelica landscape &amp;#x2014; what the book covers&#xD;
&#xD;
![enter image description here][15]  &#xD;
*What this book covered vs. what lies beyond: a map of where you stand and where the path continues.*&#xD;
&#xD;
A reader&amp;#039;s-eye view of the book&amp;#039;s scope. On the left, the topics the book takes the reader through to fluency: equation-based modelling, the standard library, custom components, events and state machines, records, arrays, inheritance, replaceable components, data integration, FMU export, the solver pipeline, and functions. On the right, the topics that lie beyond &amp;#x2014; stream connectors, homotopy initialisation, multi-phase flow, real-time/HIL &amp;#x2014; pointing the reader to where to go next.&#xD;
&#xD;
&#xD;
## 14. Application gallery &amp;#x2014; a building chiller&#xD;
&#xD;
![enter image description here][16]  &#xD;
*Chiller model from the Buildings library: condenser and evaporator loops connected through the chiller, with control inputs and fluid boundary conditions.*&#xD;
&#xD;
Modelica&amp;#039;s reach into building energy simulation is substantial. The Buildings library (developed at LBNL) provides hundreds of validated HVAC components &amp;#x2014; chillers, heat pumps, fans, control sequences &amp;#x2014; that compose into whole-building models suitable for design and operational studies. This figure shows a single chiller with its condenser and evaporator loops; full plant models scale to thousands of components.&#xD;
&#xD;
&#xD;
## 15. Application gallery &amp;#x2014; a DC motor drive&#xD;
&#xD;
![enter image description here][17]  &#xD;
*DC motor drive model: a voltage source drives current through the EMF, which converts electrical energy to rotational motion against a load.*&#xD;
&#xD;
The DC motor is the textbook example of an acausal multi-domain model &amp;#x2014; and it&amp;#039;s also a real component that ships in countless products. One diagram crosses two physical domains: the electrical loop (resistor, inductor, EMF) and the rotational mechanical loop (inertia, damper, speed sensor). The energy conversion at the EMF couples the two automatically through the connector equations. Set the input voltage profile and the speed comes out; reverse the boundary conditions and the same model behaves as a generator.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=cover_kindle.png&amp;amp;userId=20103&#xD;
  [2]: https://www.amazon.com/Getting-Started-Modelica-Language-Modeling-ebook/dp/B0GY94LXQS&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch01_multi_domain_system.png&amp;amp;userId=20103&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch01_causal_vs_acausal_motor.png&amp;amp;userId=20103&#xD;
  [5]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch01_hybrid_model_thermostat_plot.png&amp;amp;userId=20103&#xD;
  [6]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch07_bouncing_ball_height_plot.png&amp;amp;userId=20103&#xD;
  [7]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch07_event_vs_smooth_approximation.png&amp;amp;userId=20103&#xD;
  [8]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch08_msl_resistor_inheritance_hierarchy.png&amp;amp;userId=20103&#xD;
  [9]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch10_heated_pipe_physical_diagram.png&amp;amp;userId=20103&#xD;
  [10]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch10_pipesystem_simulation_result.png&amp;amp;userId=20103&#xD;
  [11]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch11_wind_turbine_data_chain_diagram.png&amp;amp;userId=20103&#xD;
  [12]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch12_symbolic_preprocessing_pipeline.png&amp;amp;userId=20103&#xD;
  [13]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch12_bipartite_graph_maximum_matching.png&amp;amp;userId=20103&#xD;
  [14]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch14_fmi_universal_connector_diagram.png&amp;amp;userId=20103&#xD;
  [15]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch16_modelica_coverage_map.png&amp;amp;userId=20103&#xD;
  [16]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch16_gallery_buildings_chiller.png&amp;amp;userId=20103&#xD;
  [17]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ch16_gallery_dc_motor_drive.png&amp;amp;userId=20103</description>
    <dc:creator>Ankit Naik</dc:creator>
    <dc:date>2026-04-27T09:42:54Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3645383">
    <title>[Live Q&amp;amp;A] Thinking in Systems, Not Code: Mastering Complex Systems with Ankit Naik</title>
    <link>https://community.wolfram.com/groups/-/m/t/3645383</link>
    <description>How do you tackle complex systems without getting lost in the code? Join us for a live Q&amp;amp;A with Ankit Naik, author of Thinking in Systems, Not Code, a book born from years of practical experience with Modelica, system-level modeling, and systems thinking.&#xD;
&#xD;
Ankit will dive into the ideas behind the book, including how to understand complex, multi-domain systems through structure, feedback, and interactions &amp;#x2013; not just code. Bring your questions! &#xD;
&#xD;
Don&amp;#039;t miss out! Whether you&amp;#039;re interested in system modeling, Modelica or Wolfram System Modeler, or ways to apply systems thinking in real-world projects, this is your opportunity to engage directly with the author.&#xD;
&#xD;
Watch the livestream tomorrow, February 26th at 9 AM CST on the [Wolfram R&amp;amp;D YouTube channel][1]!&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&amp;gt; Order the book here: https://a.co/d/07FFxRUd&#xD;
&#xD;
&#xD;
  [1]: https://youtube.com/live/vnDNQ4YzyeE&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=MasteringComplexsystems.jpg&amp;amp;userId=20103</description>
    <dc:creator>Keren Garcia</dc:creator>
    <dc:date>2026-02-25T15:19:30Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3569513">
    <title>Save notebook as tagged pdf?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3569513</link>
    <description>Has there been any progress on saving notebooks as tagged pdfs?&#xD;
&#xD;
I noticed this conversation from 5 years ago.  https://community.wolfram.com/groups/-/m/t/1966986&#xD;
&#xD;
Getting the section headings should be simple, but automatically labeling images and graphics maybe requires AI?&#xD;
&#xD;
There are some new regulations regarding digital accessibility which go into effect in a few months.  It&amp;#039;d be a long solution to edit the pdfs in Word or something like that.</description>
    <dc:creator>Todd Rowland</dc:creator>
    <dc:date>2025-11-02T19:53:02Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2090703">
    <title>Book &amp;amp; Course: Analysis with Mathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/2090703</link>
    <description>[![enter image description here][1]][2]&#xD;
&#xD;
[![enter image description here][3]][4]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][5]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=frontback.jpeg&amp;amp;userId=20103&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=frontback.jpeg&amp;amp;userId=20103&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2020-10-07at1.48.05PM.jpg&amp;amp;userId=20103&#xD;
  [4]: https://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2020-10-07at1.48.05PM.jpg&amp;amp;userId=20103&#xD;
  [5]: https://www.wolframcloud.com/obj/0746a0c7-f2fa-4360-a96d-e3adbbed20e8</description>
    <dc:creator>Galina Filipuk</dc:creator>
    <dc:date>2020-10-07T18:13:54Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3534450">
    <title>A Project to Find the Fundamental Theory of Physics by Stephen Wolfram Now in Paperback!</title>
    <link>https://community.wolfram.com/groups/-/m/t/3534450</link>
    <description>![A Project to Find the Fundamental Theory of Physics by Stephen Wolfram][1]&#xD;
&#xD;
It&amp;#039;s been five years since the original publication of *A Project to Find the Fundamental Theory of Physics* and the launch of the Wolfram Physics Project. Now the book is available in paperback for the first time!&#xD;
&#xD;
&amp;gt; **Order Now:** https://a.co/d/0uyBmEj&#xD;
&#xD;
The Wolfram Physics Project is a bold effort to find the fundamental theory of physics. It combines new ideas with the latest research in physics, mathematics and computation in the push to achieve this ultimate goal of science. Written with Stephen Wolfram&amp;#039;s characteristic expository flair, this book provides a unique opportunity to learn about a historic initiative in science right as it is happening. *A Project to Find the Fundamental Theory of Physics* includes an accessible introduction to the project as well as core technical exposition and rich, never-before-seen visualizations.&#xD;
&#xD;
The paperback edition will be published on August 26, 2025. Preorders are available until that time.&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=4950Book-3-edited.jpg&amp;amp;userId=20103</description>
    <dc:creator>Paige Vigliarolo</dc:creator>
    <dc:date>2025-08-22T17:35:59Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3517873">
    <title>[CALL] Ignite the Future: Help Us Find the Next Generation of Wolfram Innovators</title>
    <link>https://community.wolfram.com/groups/-/m/t/3517873</link>
    <description>![Ignite the Future: Help Us Find the Next Generation of Wolfram Innovators][1]&#xD;
&#xD;
For well over a decade, the [Wolfram Innovator Award][2] has honored pioneering uses of computation across disciplines&amp;#x2014;from breakthroughs in quantum computing and artificial intelligence to advances in biomedical research, environmental modeling, algorithmic art, and computational education. These awards have celebrated individuals who use Wolfram technologies to push boundaries in science, industry, and creative practice. **Now, it&amp;#039;s time to extend that spotlight to the next generation.**&#xD;
&#xD;
[![enter image description here][3]][4]&#xD;
&#xD;
We&amp;#039;re looking to celebrate exceptional computational thinking by creators early in their careers - from outstanding students to junior researchers to young entrepreneurs&amp;#x2014;many of whom we&amp;#039;ve likely not even been introduced to yet. Let&amp;#039;s fix that, together.&#xD;
&#xD;
Students, research assistants and young entrepreneurs around the world are using Wolfram technologies in countless creative ways from modeling and discovery to building tools, products, visualizations, and learning experiences. Many are also helping grow local communities through outreach, mentorship, and education often supported by programs like the [Wolfram Student Ambassador Program][5]. The possibilities are as diverse as the students themselves. It&amp;#039;s time we recognized this brilliance.&#xD;
&#xD;
We&amp;#039;d love to hear about and honor originality, clarity of thought, and impactful use of Wolfram-powered computation whether through essays, visualizations, simulations, learning tools, data projects, or something entirely unexpected. &#xD;
&#xD;
&#xD;
----------&#xD;
&#xD;
&#xD;
#Ways You Can Contribute&#xD;
&#xD;
&#xD;
----------&#xD;
&#xD;
&#xD;
##Spotlight an emerging leader&#xD;
&#xD;
Tell us about someone you know, someone you&amp;#039;ve worked with, a student or collaborator that made you think &amp;#034;this young person is going to win a Wolfram Innovator Award someday&amp;#034;. Who impressed you with a Wolfram-based project? Share their name, age, and a brief project description or link.  &#xD;
&#xD;
##Showcase an Outstanding Project&#xD;
&#xD;
Post examples (with links or screenshots) of brilliant youth work using Wolfram tools&amp;#x2014;your own work or one you admire.&#xD;
&#xD;
##Suggest a Category&#xD;
&#xD;
Beyond &amp;#034;science&amp;#034; and &amp;#034;coding&amp;#034;: What kinds of youth innovation should we celebrate? Computational&#xD;
art? Educational tools? Social impact? Data storytelling? Drop your category ideas.&#xD;
&#xD;
##Spot Talent from the Field&#xD;
&#xD;
Browse past [projects from our summer programs][6] or from the [Student Leadership Programs][7], and nominate ones that deserve wider recognition.&#xD;
&#xD;
##Drop a Wild Idea&#xD;
&#xD;
Share an unconventional concept for how this award could work or evolve. No limits just original&#xD;
thinking.&#xD;
&#xD;
&#xD;
----------&#xD;
&#xD;
&#xD;
Even small personal projects that solve real problems or communicate a concept beautifully can be celebrated. Help us discover them!&#xD;
&#xD;
Add your thoughts, projects, nominations, and ideas in the comments - and let&amp;#039;s all take time to recognize the future innovators that are doing things today!&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=8205ccb92e8a-8480-4eb2-8b7b-a353125f4810.jpg&amp;amp;userId=11733&#xD;
  [2]: https://www.wolfram.com/events/technology-conference/innovator-award/&#xD;
  [3]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2025-07-23at2.20.28%E2%80%AFPM.jpg&amp;amp;userId=11733&#xD;
  [4]: https://www.wolfram.com/events/technology-conference/innovator-award/&#xD;
  [5]: https://www.wolfram.com/company/careers/ambassador/&#xD;
  [6]: https://community.wolfram.com/content?curTag=wolfram%20summer%20camp&#xD;
  [7]: https://community.wolfram.com/content?curTag=student%20leadership%20programs</description>
    <dc:creator>EDITORIAL BOARD</dc:creator>
    <dc:date>2025-07-23T17:50:31Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3519668">
    <title>Mathematica Journal</title>
    <link>https://community.wolfram.com/groups/-/m/t/3519668</link>
    <description>Back in the 90&amp;#039;s I subscribed to *Mathematica in Education and Research.* Does anyone know if this is still in print or if it has been renamed?&#xD;
&#xD;
How can I get a list of all *Mathematica* related journals available in print or online?</description>
    <dc:creator>Steve M</dc:creator>
    <dc:date>2025-07-26T16:28:04Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3515353">
    <title>The universe within: an introduction to Stephen Wolfram&amp;#039;s new physics</title>
    <link>https://community.wolfram.com/groups/-/m/t/3515353</link>
    <description>Hi all,  &#xD;
My book introducing lay readers to the Physics Project is at [Amazon][1]. But community members who want a copy need only reach out to me. I&amp;#039;m in it for the dissemination of ideas, not the money. &#xD;
&#xD;
---&#xD;
*Developing ideas first introduced in A New Kind of Science two decades ago, Stephen Wolfram and his collaborators in the Wolfram Physics Project have created a completely new paradigm of fundamental physics. Delving deeper than the Standard Model and Einsteinian relativity, Wolfram&amp;#039;s new model not only accommodates the traditional models but actually incorporates and, finally, reconciles them.*  &#xD;
*The deep conundrums of space, time, and energy turn out to be consequences of a much deeper, more profound reality many orders of magnitude smaller and less tangible. The Universe Within explores this inconceivably small realm, where space itself is infinitesimally tiny pieces of all-but nothingness which, continually transforming and evolving through time and on a vast scale, comprise our reality -- and many others.*  &#xD;
*The Universe Within gives the ordinary non-scientist reader a window into what may well be the most radical, most profound, most fundamental model of physics ever proposed.*&#xD;
&#xD;
---&#xD;
&#xD;
Patrick Sutton&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
&#xD;
  [1]: https://www.amazon.com/dp/B0FHFJLP3F&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=81ZweIPOqL._SL1500_.jpg&amp;amp;userId=20103</description>
    <dc:creator>Patrick Sutton</dc:creator>
    <dc:date>2025-07-19T05:14:09Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3495300">
    <title>[WSS25] AI-Aided Wolfram Tech Recommender System for Scientific Articles (TechMatch)</title>
    <link>https://community.wolfram.com/groups/-/m/t/3495300</link>
    <description>![AI-Aided Wolfram Tech Recommender System for Scientific Articles (TechMatch)][1]&#xD;
&#xD;
&amp;amp;[Wolfram Notebook][2]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=WSS-27.png&amp;amp;userId=3483788&#xD;
  [2]: https://www.wolframcloud.com/obj/c62f4f1d-f34b-428e-b6b8-e7a98db2b88b</description>
    <dc:creator>Muskaan Shahzad</dc:creator>
    <dc:date>2025-07-09T01:08:13Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3450713">
    <title>Looking for book: The Ins and Outs of Mathematica</title>
    <link>https://community.wolfram.com/groups/-/m/t/3450713</link>
    <description>Hello Community,  &#xD;
I am looking for a book whose name is &amp;#034;The Ins and Outs of Mathematica&amp;#034;.  &#xD;
It is a &amp;#039;eésumé&amp;#039; from the articles published in the *printed* Mathematica Journal a long&#xD;
time ago.  &#xD;
When I moved to my new home i Lost all the Journals.  &#xD;
I tried Amazon US/UK/France without any success.  &#xD;
I am ready to pay 100 $ + postage for this excellent book.  &#xD;
Thank you for your attention.Kind regards to all.  &#xD;
Jean-Michel&#xD;
&#xD;
PS : What is the *fundamental* difference(s) between Community and MSE ?</description>
    <dc:creator>Jean-Michel Collard</dc:creator>
    <dc:date>2025-04-25T16:23:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3443223">
    <title>French book on geography with machine learning</title>
    <link>https://community.wolfram.com/groups/-/m/t/3443223</link>
    <description>In French language, A new book on Machine learning&#xD;
&#xD;
A. Dauphiné : Intelligence artificielle et Géographie Avec le langage Wolfram Mathematica&#xD;
&#xD;
Éditions Universitaires Européenne  &#xD;
www.morebooks.shop and Amazon</description>
    <dc:creator>André Dauphiné</dc:creator>
    <dc:date>2025-04-11T12:18:06Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3411582">
    <title>Maeder programming in Mathematica, 3rd Edition. Missing equations</title>
    <link>https://community.wolfram.com/groups/-/m/t/3411582</link>
    <description>In my paperback version of Maeder&amp;#039;s book, equations 12.2-1 and 12.2-2 on pages 317 and 318 are essentially missing. The equations there contain lots of  white space and parts of the equations are definitely missing. Can anyone else confirm this *is* or *is not* the case in their copy?&#xD;
&#xD;
And, if so, was an errata sheet ever issued for this book?</description>
    <dc:creator>Paul Nielan</dc:creator>
    <dc:date>2025-03-07T06:45:29Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3410217">
    <title>A Booklet Compiled from Stephen Wolfram&amp;#039;s Livestreams (about Business, Innovation &amp;amp; Managing Life)</title>
    <link>https://community.wolfram.com/groups/-/m/t/3410217</link>
    <description>Hello everyone,&#xD;
&#xD;
I am a huge fan of SW from Shenzhen, China. I have read almost all of SW’s books and articles, and recently, I have been particularly interested in his live streams on business and innovation. However, videos are quite an inefficient way to absorb information&amp;#x2014;especially since these are live stream recordings. As a non-native English speaker, I find them somewhat difficult to follow, and I also prefer reading text directly.&#xD;
&#xD;
I noticed that there used to be transcribed Q&amp;amp;A texts available ( https://www.stephenwolfram.com/questions/ ), but since 2021, only live streams have been provided.&#xD;
&#xD;
Therefore, I decided to transcribe his live streams myself and compile them into an EPUB. First, I used a web scraper to download the automatically generated YouTube subtitles, then refined them with DeepSeek to fix obvious pauses and errors, making them more readable and aligning them with each individual question. Since I am currently only interested in the topics of business and innovation, I have only compiled content related to this theme. The material is up to date as of February 12, 2025.&#xD;
&#xD;
All copyrights belong to SW. Additionally, since the content has been processed by an LLM, I cannot guarantee that there are no errors or omissions, so please review it carefully. Finally, I sincerely hope that Wolfram Research will continue to provide text versions of these live streams&amp;#x2014;I would be extremely grateful for that.&#xD;
&#xD;
Download: https://github.com/FLSP/Stephen-Wolfram-s-LiveStream-Booklet</description>
    <dc:creator>Yifa Tian</dc:creator>
    <dc:date>2025-03-06T02:07:58Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2606866">
    <title>Your amateur research with the Wolfram Language?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2606866</link>
    <description>I&amp;#039;ve heard the saying,&#xD;
&#xD;
&amp;gt; Better to remain silent and be thought a fool than to speak and to&#xD;
&amp;gt; remove all doubt.&#xD;
&#xD;
&amp;#x2014; ABRAHAM LINCOLN.&#xD;
&#xD;
Although Lincoln is often praised for his eloquence, there were moments when his silence was, perhaps, detrimental. For instance, some people believed his initial reluctance to fully commit to the abolition of slavery was a form of silence that allowed the conflict to persist longer than necessary. However, his eventual strong stance and leadership during the Civil War ultimately led to the Emancipation Proclamation and the abolition of slavery.&#xD;
&#xD;
It&amp;#039;s a reminder that even the wisest among us can fail to fulfill their potential.&#xD;
&#xD;
&amp;lt;b&amp;gt;&amp;#034;Like as his presidential resolve helped heal a nation, amateur research has always been an essential part of humanity&amp;#039;s development!&amp;#034;&#xD;
&amp;lt;/b&amp;gt;&#xD;
&#xD;
&amp;lt;p&amp;gt;&#xD;
&#xD;
&#xD;
Why Amateur Research Matters:&#xD;
================================================&#xD;
&#xD;
 Rigorous math works within defined systems, like a map with boundaries. Gödel&amp;#039;s theorems reveal that there will always be true statements outside those boundaries (&amp;#034;gaps&amp;#034;). These gaps could significantly impact our understanding, but rigorous math itself can&amp;#039;t predict their effects.&#xD;
&#xD;
Having spent years researching math with various Wolfram tools, discovering properties of the &amp;#034;MRB constant,&amp;#034; and sharing them in the Wolfram Community, I have some advice for those who wish to pioneer new&amp;#x2014;or just &amp;#034;new to them&amp;#034;&amp;#x2014;mathematical ideas. I propose counseling by taking and answering questions from aspiring analysts.&#xD;
&#xD;
My Journey&#xD;
===========&#xD;
You will discover in the following examples that Mathematica has been my go-to tool for quantum leaps in discovery.&#xD;
&#xD;
Your Journey&#xD;
===========&#xD;
&#xD;
&#xD;
The Intersection of Critical Thinking and Mathematical Discovery Within You&#xD;
------------------------------------------------------------------------&#xD;
&#xD;
Mark Twain’s apocryphal quote, “I’m in favor of progress; it’s change I don’t like,” encapsulates a profound human sentiment that echoes through the corridors of intellectual history. At its heart, this statement reflects the delicate balance between embracing new ideas and the inherent discomfort of moving beyond the familiar. (Educational humility is essential to mathematical maturity.) This tension is a driving force behind critical thinking, a process that has evolved and refined over centuries. &#xD;
&#xD;
&#xD;
 How about you? Do you have pointers for others or an interest in improving your research skills as an amateur? Since were here, how has the Wolfram community/site/products helped along the way? Pease let us know below.&#xD;
&#xD;
Let&amp;#039;s embark on this journey together and inspire more minds to discover the fascinating world of mathematics!&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2024-12-20221245.png&amp;amp;userId=366611&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2024-12-17175117.png&amp;amp;userId=366611</description>
    <dc:creator>Marvin Ray Burns A.G.S. (cum laude)</dc:creator>
    <dc:date>2022-08-28T13:18:21Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3311810">
    <title>[CALL] for submissions to the Wolfram Language Example Repository</title>
    <link>https://community.wolfram.com/groups/-/m/t/3311810</link>
    <description>[![enter image description here][1]][2]&#xD;
&#xD;
Have you seen the [WL Example Repository][3]? It’s a new collection of examples that’s ready for your submissions. &#xD;
&#xD;
Examples are relatively self-contained notebooks that show how to do specific tasks in Wolfram Language.  Every example is a publicly accessible cloud notebook, so it’s an easy way to publish your work or help others get started on similar projects.&#xD;
&#xD;
*You can create and share examples as an extension of a Community post, or use Community to discuss your published examples.*&#xD;
&#xD;
**To submit an example**, just fill out the definition notebook from the “Submit a New Resource” link on any repository page. There are guidelines at &#xD;
&#xD;
&amp;gt; https://resources.wolframcloud.com/ExampleRepository/style-guidelines&#xD;
&#xD;
Some tips for submitting examples:&#xD;
&#xD;
 - The Example Name should be short&#xD;
 - The description is optional, but can include more details&#xD;
 - The thumbnail image is also optional but will help your example stand out in the category page or search results, and also gives you a convenient image to share elsewhere.&#xD;
 - The thumbnail should be 500x500 pixels square, and is an output created by your example&#xD;
 - The thumbnail is small, so text in it won’t be easily readable&#xD;
 - Examples are a sequence of inputs and outputs with short code captions&#xD;
 - Supporting Data and Definitions is for data, not for defining functions&#xD;
 - You can link to other examples, paclets, WFR, etc.&#xD;
&#xD;
We’re aiming to have good examples in all categories. If you don’t see a category where your example would belong, you can suggest it in the definition notebook.&#xD;
&#xD;
Let us know if you have any questions.&#xD;
&#xD;
Here is a sample of different topics:&#xD;
&#xD;
 - [Möbius Carbon Nanobelts][4] &#xD;
&#xD;
 - [The Stochastic Parameter&amp;#x2013;Shift Rule][5]&#xD;
&#xD;
 - [Compute and Visualize Retrograde Motion][6]&#xD;
&#xD;
[![Three examples from the Example repo][7]][8]&#xD;
&#xD;
[![enter image description here][9]][2]&#xD;
&#xD;
&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Screenshot2024-10-30at10.33.46%E2%80%AFAM.jpg&amp;amp;userId=11733&#xD;
  [2]: https://resources.wolframcloud.com/ExampleRepository/&#xD;
  [3]: https://resources.wolframcloud.com/ExampleRepository/&#xD;
  [4]: https://resources.wolframcloud.com/ExampleRepository/resources/Mobius-Carbon-Nanobelts/&#xD;
  [5]: https://resources.wolframcloud.com/ExampleRepository/resources/The-Stochastic-ParameterShift-Rule/&#xD;
  [6]: https://resources.wolframcloud.com/ExampleRepository/resources/Compute-and-Visualize-Retrograde-Motion/&#xD;
  [7]: https://community.wolfram.com//c/portal/getImageAttachment?filename=examplerepo.png&amp;amp;userId=20518&#xD;
  [8]: https://resources.wolframcloud.com/ExampleRepository/&#xD;
  [9]: https://community.wolfram.com//c/portal/getImageAttachment?filename=54ywdfva.jpeg&amp;amp;userId=11733</description>
    <dc:creator>Elizabeth Shack</dc:creator>
    <dc:date>2024-10-30T14:41:21Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3314147">
    <title>Building recommendation system materials in Wolfram Language</title>
    <link>https://community.wolfram.com/groups/-/m/t/3314147</link>
    <description>I am wondering if someone came across a book that teach how to build recommendation systems by wolfram language. I got many books using Python, but no books based on wolfram language. &#xD;
&#xD;
I am desperately needed to get some suggestions</description>
    <dc:creator>Mesfin Woldmariam</dc:creator>
    <dc:date>2024-11-04T08:02:20Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3302546">
    <title>How to install AuthorTools?</title>
    <link>https://community.wolfram.com/groups/-/m/t/3302546</link>
    <description>In former Wolfram|One versions I had the palettes `MakeProject` and `MakeContents` within menu &amp;#034;Palettes&amp;#034;. I assume that I installed it with “Install Palette...”.&#xD;
&#xD;
Now I have version 14.1 and the author tools are no longer available.&#xD;
&#xD;
How do they have to be installed?&#xD;
&#xD;
I assume it is done by:&#xD;
&#xD;
    PacletInstall[&amp;#034;AuthorTools&amp;#034;]&#xD;
&#xD;
But this gives an error `PacletInstall::notavail` and returns `$Failed`.</description>
    <dc:creator>Werner Geiger</dc:creator>
    <dc:date>2024-10-18T20:13:10Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3114507">
    <title>NEW Book by Stephen Wolfram: “Predicting the Eclipse: A Multimillennium Tale of Computation”</title>
    <link>https://community.wolfram.com/groups/-/m/t/3114507</link>
    <description>![New book by Stephen Wolfram&amp;#x2014;Predicting the Eclipse: A Multimillennium Tale of Computation][1]&#xD;
&#xD;
Total eclipses of the Sun are rare and dramatic&amp;#x2014;and on April 8, 2024, one will cross the US. But when exactly will it happen? In this short but richly illustrated book, prominent scientist and computation pioneer Stephen Wolfram tells the triumphant and hard-won story&amp;#x2014;spanning more than two thousand years&amp;#x2014;of how science, mathematics and computation have brought us to the point where we can now predict the time of the eclipse to within one second. Learn how the problem of eclipses brought us some of the earliest exact science, the first known computer, contributions from many of the all-time greats of mathematics and physics, and critical technology for the space program. See how all this provides a clear, modern understanding of a phenomenon that has surprised and amazed throughout human history.&#xD;
&#xD;
&amp;gt; Order now: [https://www.amazon.com/Predicting-Eclipse-Multimillennium-Tale-Computation/dp/1579550878][2]&#xD;
&#xD;
&#xD;
This book includes:&#xD;
&#xD;
 - An appendix on eclipse computation in Wolfram Language&#xD;
 - Maps for where to see the April 8, 2024, total solar eclipse&#xD;
 - Tables of the dates, types, timing and locations of future eclipses&#xD;
 - A historical account of how eclipses have been predicted in the past, beginning with the Greeks and the first computer 2000 years ago&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=Eclipse-Community.png&amp;amp;userId=2691292&#xD;
  [2]: https://www.amazon.com/Predicting-Eclipse-Multimillennium-Tale-Computation/dp/1579550878/%22Order%20now%20from%20Amazon%22</description>
    <dc:creator>Paige Vigliarolo</dc:creator>
    <dc:date>2024-02-01T20:22:11Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3110587">
    <title>PublisherID issue in resurrecting old package authored by others</title>
    <link>https://community.wolfram.com/groups/-/m/t/3110587</link>
    <description>Regarding submission of Paclets to the [Wolfram Language Paclet Repository][1], a contributor is encouraged to provide a [PublisherID][2] to offset trust issues ensuing from its non-curated status.  &#xD;
&#xD;
Although a personal or organizational PublisherID is self-explanatory, what about if I&amp;#039;m wanting to resurrect a package authored by some 3rd party who made it public some time ago?  I don&amp;#039;t want to claim authorship (a field in the Paclet submittal form), yet don&amp;#039;t want to impose hassle on that 3rd party, whom might not want to be contacted or may be long-departed (hence the &amp;#034;Estate of...&amp;#034;). &#xD;
&#xD;
What is suggested practice for this case?&#xD;
&#xD;
&#xD;
  [1]: https://blog.wolfram.com/2023/03/03/sharing-your-creations-just-got-easier-with-the-wolfram-language-paclet-repository/&#xD;
  [2]: https://resources.wolframcloud.com/PacletRepository/creating-paclets</description>
    <dc:creator>Frank Iannarilli</dc:creator>
    <dc:date>2024-01-28T00:29:44Z</dc:date>
  </item>
</rdf:RDF>

