Cutting Edge STEM
Professional Learning Day, 26 Nov, 2025
Juan Carlos Ponce Campuzano
Workshop
Gold Coast Campus
👉 geogebra.org Â
Code:
GTXF J8AA
🔗 geogebra.org
Consider the system corresponding to three planes
\(\lambda\) is a parameter.
the system is consistent with \(\infty\) solutions
lambda = Slider(-10, 10, 0.1)
eq1: x + 5y = 1 + 2z
eq2: x + z= 3y + 3
eq3: 8y - lambda = 3z
Solve({eq1, eq2, eq3})
line: X = (9/4, -1/4, 0) + t * (1/8, 3/8, 1)
🔗 Solve           Â
🔗 Slider           Â
🔗 Equations of lines
🔗 Online demo
The slope fied for the differential equation \(\dfrac{dy}{dx}=\dfrac{-0.5(y-4)}{x},\) with \(x\neq 0,\) where \(-6\leq x\leq 6\) and \(-6\leq y \leq 6\) is shown below.
n = Slider(10, 30, 1)
s = Slider(0.1, 1, 0.1)
F(x, y) = -0.5 * (y - 4)/x
SlopeField(F, n, s, -6, -6, 6, 6)
A = (0, 0)
SolveODE(F, x(A), y(A), 6, 0.01)
SolveODE(F, x(A), y(A), -6, 0.01) 🔗 SlopeField
🔗 SolveODE
🔗 Online demo
Represent in the Argand diagram the solutions of
Represent in the Argand diagram the solutions of
z_1 = i
u = Vector(z_1)
r = abs(z_1)
theta = arg(z_1)
n = Slider(2, 10, 1)
L = Sequence(r^(1/n) * exp(i * ( theta + 2pi * k )/n ), k, 0, n-1)
Sequence(Vector(Element(L, k)), k, 1, Length(L))
# Alternatively
Zip(Vector(Point), Point, L)🔗 Sequence
🔗 Vector
🔗 Zip (advance)
🔗 Online demo
GeoGebra Classroom is a virtual platform through which teachers can
If you want to go far, go together.
If you want to go fast, go alone.
🔗 Global community
GeoGebra
🔗 Applied Mathematics, Statistics and Physics
School of Environment and Science
🔗 jcponce.com
Thank you!