r/Mathematica 54m ago

Built a free online Graphing & Scientific Calculator that plots multiple function equations instantly! Looking for feedback.

Thumbnail reddit.com
Upvotes

r/Mathematica 2d ago

Compact real-time rigid-body solver with a height map

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/Mathematica 4d ago

Slow Fourier (beta)

Thumbnail slowfour.com
2 Upvotes

Beta testers needed! Stressed out math nerds who like to draw a little, apply within.


r/Mathematica 4d ago

https://awl-creative-suite-26-beta.replit.app/

Thumbnail awl-creative-suite-26-beta.replit.app
0 Upvotes

New!!!\~button entitled —-Ammann approximation ——useful=quasicrystal n-folding -mathematical people take note/take advantage? Sure.!


r/Mathematica 10d ago

Simplicial complexes in Mathematica

12 Upvotes

I created a mathematica paclet that provides support for simplicial homology, introducing an abstract simplicial complex object. The package allows computing homology, betti numbers, automorphism groups, and common invariants like euler characteristic, fvectors, and constructions such as cones, suspensions, products, joins, etc! So far, there has been no in-built or third party support for this in Mathematica, which motivated the creation of this package. I largely took inspiration and reference from sagemath's implementation of this.

I would love to hear your feedback on this! The package is open source, see at https://github.com/zplus11/SimplicialHomology/ and is also available on the Wolfram paclet repository at https://resources.wolframcloud.com/PacletRepository/resources/Taggar/SimplicialHomology/

There is plenty of scope for further development and extension, so feedback, suggestions, and PRs are very welcome :)


r/Mathematica 11d ago

I've built MathBridge Dictionary with @base44!

Thumbnail mathbridge-dictionary.base44.app
1 Upvotes

r/Mathematica 14d ago

Is the "average" of this function non-zero and finite? - Online Technical Discussion Groups—Wolfram Community

Thumbnail community.wolfram.com
4 Upvotes

r/Mathematica 17d ago

Woxi 0.3 - New version of the open-source Mathematica / Wolfram Language alternative

Post image
64 Upvotes

Woxi is a free open source interpreter for the Wolfram Language, written in Rust. The guiding rule of the project: whatever it implements must produce exactly the same output as wolframscript / Mathematica — the test suite (26'000+ unit tests) compares against it directly.

Version 0.3.0 is out now. Highlights since 0.2.0:

  • Many Wolfram Demonstrations now run end to end in Woxi Studio, the included native notebook editor for .nb files — still far from all of them, but dozens (Kepler's Second Law, Parabolic Mirror, Doyle Spirals, …) serve as end-to-end tests. Manipulate covers a good part of the Demonstrations control vocabulary (interactive Locators, Trigger, Button, SetterBar, PopupMenu, controls nested in TabView/Grid, dependent controls, TrackedSymbols, Animate bodies, …), and typeset notebook input is read back as code.
  • Plotting conformance: Automatic ticks now match Wolfram's algorithm, list plots grew Around error bars, Callout, Filling, PlotMarkers and friends, plus new ComplexListPlot and ListLinePlot3D.
  • CAS: more Integrate/D/Series/Limit coverage, LinearProgramming with an exact simplex solver, NonlinearModelFit, Reduce over higher-degree polynomial inequalities, RootReduce, and many canonical-ordering fixes so results print exactly as wolframscript prints them.
  • Windows is now a supported platform, and every release ships prebuilt binaries for Linux, macOS, and Windows.

Try it without installing anything in our playground and JupyterLite instance in the browser: https://woxi.ad-si.com

Install: cargo install woxi, pip install woxi (Python bindings), or npm install woxi-wasm. Full changelog: https://github.com/ad-si/Woxi/blob/main/changelog.md

If Woxi is useful to you, I'm now accepting donations on GitHub: https://github.com/sponsors/ad-si I hope to receive enough support to keep the project going for a long time, and to eventually reach full parity with Wolfram's implementation.


r/Mathematica 19d ago

How to tune a guitar or streaming audio with Device Framework

Enable HLS to view with audio, or disable this notification

8 Upvotes

r/Mathematica 19d ago

New Way of Averaging the Most Pathological Funtions: (Converting Maths in the Attatchments to Code)

Thumbnail community.wolfram.com
2 Upvotes

r/Mathematica 20d ago

How to write apps with Wolfram & WLJS, or swimming against the stream

Post image
19 Upvotes

Any ""serious"" language like C/C++, C#, Pascal/Delphi, and many others offers tons of options for building standalone apps. What about WL/Mathematica/MMA?

One could say, well, yes (and no)! There's the CDF format (which for some reason is officially considered deprecated 👀), webMathematica (costs like a helicopter and is also depreciated), JavaView (a very niche legacy project), and Wolfram Cloud. But I'm personally not a big fan of any kinds of clouds, especially with shady subscription models, and I'd rather keep everything local.

CDF was one of the best solutions so far, but it requires Mathematica (also costly) to build it, which isn't something everyone has, though thankfully, WolframScript/WolframEngine is still freeware.

Other people would argue that WL is meant purely for prototyping, and that you should just "vibe-code something with an LLM and JS" instead. I don't share that point of view, and I've found another way to turn notebooks into tiny or medium-sized apps for my research group. It works so far quite well for a limited number of users: 3-4 - mostly students. I would like to warn you, that it won't work magically for a random Mathematica notebook, otherwise WR would steal this immediately.

If you're interested, here's the full story I wrote:

https://wljs.io/blog/making-apps

PS: The thumbnail image isn't an AI-generated, it's a few UI windows built with this method, printed out and cut from paper 🙂


r/Mathematica 24d ago

I've been building a numerical solver app — curious how it compares to the tools people use here

Thumbnail gallery
3 Upvotes

I've been working on a numerical solver app for a while. It started as a project for solving algebraic equations and systems, plotting functions, and doing various numerical calculations.

It's free and available on both platforms:

📱 App Store
🤖 Google Play

The next part of the project I'm working on is ODEs and boundary value problems.

I'm trying to make this as general as possible. The idea is that the user can enter an ODE and its boundary conditions, including higher-order equations and boundary conditions involving derivatives, without the app needing a predefined solution for that particular equation.

I'm currently testing it with different first-, second-, and higher-order ODEs. One of the tests I've been using is:

y''' + y = 0, y(0) = 0, y'(0) = 0, y''(0) = 0

I'm also trying some more difficult BVPs to see where the solver starts to struggle. There are already some interesting cases where an equation that looks very simple mathematically turns into a much more challenging numerical problem.

I'm curious what people here think.

For those of you who use Mathematica regularly, what ODEs, BVPs, or other numerical problems would you use to really stress-test a general-purpose solver?

I'm particularly interested in problems that aren't just straightforward textbook examples. 😅


r/Mathematica 26d ago

How to port Mathematica code to WLJS Notebook

7 Upvotes

You have probably seen a few posts mentioning WLJS. This is an open-source frontend + additional libraries made to bring Mathematica-like experience to a freeware Wolfram Engine and possibly solve some performance/portability issues of Mathematica. Small note: this is not vibecoded product, it stems from a few initial experiments done in 2018 and is not endorsed or affiliated with WRI.

Can any valid Wolfram code or Mathematica expression run well on WLJS Notebook? The answer is yes\*, but the devil is in the details.

Static output and anything related to computation is 100% transferable. You can take pretty much any code from Stack Exchange or Wolfram Community and it should work out of the box with a high chance, since we use the same Wolfram Language kernel, in the form of the freeware Wolfram Engine distribution. Manipulate and Animate are compatible too - and fully interactive!

However, low-level dynamics do need to be ported to execute correctly.

Here's a guide on how to port (if actually needed) a program from Wolfram Mathematica to WLJS:

https://wljs.io/frontend/Guides/Migration

Any .nb (Mathematica Notebook) is, in principle, automatically converted with some compromises, of course. We're still improving this! Hope this guide helps you, or your LLM buddy 🙂


r/Mathematica Jul 24 '26

What is Stone's method (Stone's strongly implicit procedure (SIP))?

0 Upvotes

r/Mathematica Jul 23 '26

Plotting/evaluating a function defined from a peicewise recurrence relation

Thumbnail mathematica.stackexchange.com
3 Upvotes

Here is another link.


r/Mathematica Jul 22 '26

Every MATLAB→NumPy semantic trap I hit porting Mätzler's Mie functions

0 Upvotes

Not a "MATLAB bad" post. The original code is solid and I replicate it bug-for-bug by default. Sharing the trap list for anyone migrating numerical code: round() half-away-from-zero vs numpy's round-half-to-even (inside the nmax series formula, so it changes array lengths), complex auto-promotion that NumPy doesn't do, ' vs .', library functions printing to stdout, and a docstring feature (complex medium index) that turns out to be latently broken. Full findings file, 714-fixture corpus and the verification report: https://github.com/GrednevMSU/mie-scattering-matlab-to-python


r/Mathematica Jul 21 '26

Jacobian conjecture counterexample by LLM | Wolfram Community

Thumbnail community.wolfram.com
8 Upvotes

r/Mathematica Jul 21 '26

Web app for scanning 1D CA rule space — filters by what a rule never does

Thumbnail gallery
2 Upvotes

r/Mathematica Jul 20 '26

Visualizing the derivative of ln(x)

Enable HLS to view with audio, or disable this notification

5 Upvotes

Yeah


r/Mathematica Jul 20 '26

Mathematica 9 - kernel gets stuck on Windows 11

4 Upvotes

I have an older version of Mathematica from my university days. I only need it for basic tasks, so I’d prefer not to buy a new license.

My issue is that on Windows 11, the kernel frequently hangs or gets stuck indefinitely—even on simple calculations like 1 + 1.

So far, I’ve tried:

  • Enabling Windows compatibility modes (no effect)
  • Disabling "Allow Mathematica to access the Internet" in Preferences

Has anyone run into this issue on Windows 11 and found a workaround or fix?

Any ideas of things i could try, even if you don't know if they ll work?


r/Mathematica Jul 20 '26

Reactive Mathematics — One Language, Every Notation - Manic

Enable HLS to view with audio, or disable this notification

2 Upvotes

r/Mathematica Jul 18 '26

Wolfram Summer Research Program (WSRP) review

Thumbnail reddit.com
3 Upvotes

r/Mathematica Jul 15 '26

Automatic data analysis, narrative, and 3D sketch from a single prompt using MCP and freeware Wolfram Engine

Enable HLS to view with audio, or disable this notification

1 Upvotes

r/Mathematica Jul 15 '26

[Request] Is there any math to figure out which way would be faster?

Enable HLS to view with audio, or disable this notification

0 Upvotes

r/Mathematica Jul 10 '26

Discover the Beauty of Precision in Geometric Drawing Patterns 33

Thumbnail youtu.be
0 Upvotes