Free MathCAD alternative for Linux
Computing Competency
Present complex equations with intermediate steps, graphics, plots, and results in SMath.
University students in engineering often have assignments in which they must show their work step-by-step with sample calculations. Although Excel and Python are useful for advanced calculations, they can't present complex equations formally in a report.
MathCAD [1] is a good package for writing engineering reports. The tool offers a workbook interface that allows you to enter complex equations in a readable format, along with a rich function library, programming interface, graphics, and plots. Unfortunately, MathCAD isn't supported in Linux, and it is generally out of the budget for students or casual users. As an alternative, SMath is a great free option that works in Linux, macOS, and Windows.
In this article I introduce SMath and show you some of the useful features that I expect to use in my next engineering term. I also look at an SMath example that solves a typical high school or first-year university math problem.
Getting Started
The SMath installation files reside on the project's website [2]. To install the software, the Mono development environment needs to be loaded first. In Debian/Raspbian/Ubuntu systems, enter:
sudo apt install mono-devel
In the next step, copy the SMath installation files to a local directory on your laptop and run the SMath desktop:
# run SMath Studio in Linux: ./smathstudio_desktop_mono
SMath Studio has a side panel of common functions and symbols (Figure 1). All the functions are listed in the Insert Function (fx) dialog box.
Equations, Variables, and Units
SMath lets you create complex calculations from the side panel (Figure 1) or with keyboard shortcuts. Complex equations can be modified with the arrow keys to move the cursor between elements (Figure 2).
SMath Sheets calculate from top left to bottom right, so it is important to define a variable before it is used. A variable is defined with :=
, and the results of a calculated value are displayed with the equals sign (=
).
To add units to a variable, type a single quote ('
) before entering the unit, or you can choose from a list of units (Figure 3). If a calculation has mixed units, SMath automatically manages the conversion between units (Figure 4).
To make things a little more presentable, SMath shows variables, calculations, and results in black and units in blue, although this feature is adjustable. The final results of a calculation can be presented in fractions, unit conversions, or simply the numeric value.
Solutions
SMath also supports useful features such as interface widgets and plotting, as well as conditional code. One problem that regularly needs to be solved in high school and many first-year university courses is to find x intercepts and the area under a parabola defined by a quadratic equation. The next example solves this problem and highlights some of the key features built into SMath.
The first step in solving this problem is to define the input variables. User interfaces such as adjustable sliders can be added from the Insert menu in the toolbar (Figure 5). Slider widgets define and toggle variables (Figure 6).
Plotting a parabola is a quick way to check the number of x intercepts for an equation. To add a plot, use Insert | Plot | 2D (Figure 7). Once a plot is dropped onto a workbook it can be resized and repositioned. For this example, the plot is configured to show the f(x) quadratic equation.
You can quantitatively find the number of x intercepts in two ways (Figure 8): by manually solving the quadratic formula for x when y=0, or with the SMath solve(2)
function. To insert this function, type solve, then press the Tab key once the dropdown menu displays solve(2). To find the area under the curve, the results of the solve
function should be defined as a new variable (e.g., MyRoots
).
The solve(2)
function returns one or two x intercepts where the curve touches or crosses the x-axis. If you don't change your settings to Calculation | On error | Continue (Figure 9), the logic will be interrupted if a curve does not cross the x-axis.
Added logic can handle special cases. To solve for the area under the curve, I used the if
statement then checked for valid roots (Figure 10). An IsDefined
function checks whether the MyRoots variable is valid (i.e., has roots).
If roots are found, the limits are passed to an integral function to calculate the area. (Integral and derivative functions are found in the Functions side panel.) If no roots are found, the string "Equation doesn't cross axis"
is passed to the area
variable.
Figure 11 shows the final SMath worksheet example, with the interface widgets and plotting and conditional code that find the x intercepts and area under a parabola with the quadratic equation.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.