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
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
-
Plasma Desktop Will Soon Ask for Donations
The next iteration of Plasma has reached the soft feature freeze for the 6.2 version and includes a feature that could be divisive.
-
Linux Market Share Hits New High
For the first time, the Linux market share has reached a new high for desktops, and the trend looks like it will continue.
-
LibreOffice 24.8 Delivers New Features
LibreOffice is often considered the de facto standard office suite for the Linux operating system.
-
Deepin 23 Offers Wayland Support and New AI Tool
Deepin has been considered one of the most beautiful desktop operating systems for a long time and the arrival of version 23 has bolstered that reputation.