Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
/*
 * This file:
 *   http://anggtwu.net/MAXIMA/2025-baf-strang.mac.html
 *   http://anggtwu.net/MAXIMA/2025-baf-strang.mac
 *          (find-angg "MAXIMA/2025-baf-strang.mac")
 * Author: Eduardo Ochs <eduardoochs@gmail.com>
 *
 *     See: (find-books "__alg/__alg.el" "strang" "3" "That singular case")
 * Used in: (bafp 14 "solving-equations")
 *          (bafa    "solving-equations")
 * (find-Maxima3-links)
*/

* (eepitch-maxima)
* (eepitch-kill)
* (eepitch-maxima)
** (find-angg "MAXIMA/2025-emaxima.mac")
load       ("~/MAXIMA/2025-emaxima.mac");
linenum:0;
* (eeks 0.25 0.25)


/* block strang by hand */
eq1 : 1*x + 2*y = 3;
eq2 : 4*x + 5*y = 6;
eq3 :         4*eq1;
eq4 :  expand(4*eq1);
eq5 : eq2 - eq4;
eq6 : eq5 / -3;
eq7 : subst(eq6, eq1);
eq8 : eq7 - 4;

linenum:0;
/* block strang by solve */
eq1 : 1*x + 2*y = 3;
eq2 : 4*x + 5*y = 6;
solve([eq1,eq2],[x,y]);


* (ee-write-buffer-contents "*maxima*" "/tmp/o")
* (find-angg "LUA/Maxima3.lua" "log-to-i" 4)