Free MathCAD alternative for Linux
Computing Competency

© Lead Image © donnastern , 123RF.com
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
-
The GNU Project Celebrates Its 40th Birthday
September 27 marks the 40th anniversary of the GNU Project, and it was celebrated with a hacker meeting in Biel/Bienne, Switzerland.
-
Linux Kernel Reducing Long-Term Support
LTS support for the Linux kernel is about to undergo some serious changes that will have a considerable impact on the future.
-
Fedora 39 Beta Now Available for Testing
For fans and users of Fedora Linux, the first beta of release 39 is now available, which is a minor upgrade but does include GNOME 45.
-
Fedora Linux 40 to Drop X11 for KDE Plasma
When Fedora 40 arrives in 2024, there will be a few big changes coming, especially for the KDE Plasma option.
-
Real-Time Ubuntu Available in AWS Marketplace
Anyone looking for a Linux distribution for real-time processing could do a whole lot worse than Real-Time Ubuntu.
-
KSMBD Finally Reaches a Stable State
For those who've been looking forward to the first release of KSMBD, after two years it's no longer considered experimental.
-
Nitrux 3.0.0 Has Been Released
The latest version of Nitrux brings plenty of innovation and fresh apps to the table.
-
Linux From Scratch 12.0 Now Available
If you're looking to roll your own Linux distribution, the latest version of Linux From Scratch is now available with plenty of updates.
-
Linux Kernel 6.5 Has Been Released
The newest Linux kernel, version 6.5, now includes initial support for two very exciting features.
-
UbuntuDDE 23.04 Now Available
A new version of the UbuntuDDE remix has finally arrived with all the updates from the Deepin desktop and everything that comes with the Ubuntu 23.04 base.