Functional Programming in Geogebra

From the 5.0 Manual of Geogebra: It’s actually enough to provide a single list to Zip[]. This makes it a shorter alternative to Sequence[] when all you want is to traverse a list. For example, Zip[a^2, a, listOfNumbers] is much shorter than Sequence[Element[listOfNumbers, […]

(My) Basic Rules of Good CAS Coding (in Geogebra)

When solving textbook examples often many styles of coding are possible. As everywhere some principles which are useful when programming have been proven very useful as best practice: Never copy results manually to progress with the calculation. Never. Don’t even […]