Python package simplifies algebraic equations
Beautiful and Colorful
To demonstrate how the two faucets interact while filling the tub, the three bar graphs in Figure 4 represent the respective fill levels by minute. In the graph on the left, the bath user only turns on the slow faucet, which fills the tub in 15 minutes; in the middle, the 10-minute fast faucet is active; and, on the right, both faucets are active together.
In Listing 4, starting in line 5, the fill_tub()
function takes the tub fill rate per minute (per_min
) as well as the number of values on the X axis displayed (i.e., the minute ticker). Although the scenarios presented each cover different sets of minute values, the matplotlib
functions insist that X and Y values be arrays of equal size, or else they will provoke non-intuitive error messages from the depths of the library. The fill_tub()
function returns two arrays lx
and ly
that contain values for the X and Y axes in the bar graph. The two arrays are the same length, and unoccupied Y values with the tub already full are simply set to zero for initialization purposes in line 7.
Listing 4
bars.py
01 #!/usr/bin/env python3 02 from matplotlib import pyplot as plt 03 from fractions import Fraction 04 05 def fill_tub(per_min,xmax): 06 lx=list(range(1,xmax+1)) 07 ly=[0] * xmax 08 sum=0 09 for i in range(xmax): 10 sum+=per_min 11 if sum > 1: 12 break 13 ly[i]=sum 14 15 return lx,ly 16 17 xmax=15 18 19 plt.style.use('ggplot') 20 fig,ax = plt.subplots(nrows=1,ncols=3,figsize=(15,5)) 21 fig.suptitle("Filling a bath tub") 22 23 lx,ly = fill_tub(Fraction(1,15),xmax) 24 ax[0].bar(lx,ly,color='tab:red') 25 ax[0].set_xlabel("Minutes") 26 ax[0].set_ylabel("Fill Level") 27 ax[0].set_title("15min faucet") 28 29 lx,ly = fill_tub(Fraction(1,10),xmax) 30 ax[1].bar(lx,ly,color='tab:orange') 31 ax[1].set_xlabel("Minutes") 32 ax[1].set_ylabel("Fill Level") 33 ax[1].set_title("10min faucet") 34 35 lx,ly = fill_tub(Fraction(1,10)+Fraction(1/15),xmax) 36 ax[2].bar(lx, ly, color='tab:green') 37 ax[2].set_xlabel("Minutes") 38 ax[2].set_ylabel("Fill Level") 39 ax[2].set_title("Both 15min and 10min faucet") 40 41 plt.savefig("bars.png")
Painting three different graphs side by side in an image file is a piece of cake for matplotlib
: The subplots()
function simply creates a graph grid with one row as well as three columns in line 20 and returns an array of three graph objects in ax
. With these settings, matplotlib
manages to arrange the three graphs beautifully, without any manual intervention. Finally, the last line writes the image data to a newly created image file bars.png
.
Exact Fraction Calculation
To prevent the program from immediately turning a fraction like 1/15 into a floating-point number, Listing 4 pulls in the fractions package, which handles real fractional arithmetic. Thus, line 23 with Fraction(1, 15)
can actually pass 1/15 to fill_tub()
rather than, say, 0.066666666667
. The latter would cause nasty rounding errors when summing up fractional values later and possibly even cause the tub to overflow. The fractions package, on the other hand, overloads operators like +
or >
. Therefore, sum += per_min
in line 10 actually adds 1/15 to the amount of water in the tub, and sum
inside the if
condition in line 11 is later exactly 1
when the tub is full, rather than some close, but not quite right floating-point value.
Infos
- Listings for this article: ftp://ftp.linux-magazine.com/pub/listings/linux-magazine.com/248/
- Virtual environments: https://docs.python.org/3/tutorial/venv.html
« Previous 1 2
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.