Guessing Quiz

Interactive algebra guessing quiz.

This page demonstrates the first interactive algebra quiz in FreeCampus Math.

The package also provides a Python notebook widget, but rendered Quarto HTML does not keep a live Python kernel after publication. This page uses a browser-native version of the quiz so it remains interactive as a static HTML document.

Guess the expression

Choose the expression that matches the graph.

Python notebook widget

Use this version in a live Jupyter notebook or notebook-style Quarto preview with a running Python kernel.

from fcmath.algebra import GuessingQuizWidget

quiz = GuessingQuizWidget(total_questions=5)
quiz.display()
Back to top