Educational Cards
Learn from video content, text, and interactive tasks
Filters
State Evolution and Interference Intuition
Before measurement, a closed system evolves linearly: amplitudes add with phases attached, and...
Single-Qubit Gates and Circuit Composition
Single-qubit gates are 2times 2 unitaries composed in time order. X swaps populations, Z adds phase...
QML Foundations: Why Quantum Machine Learning?
Quantum machine learning is almost always hybrid : classical code optimizes parameters while a...
Qubits and the Bloch Sphere
A qubit state is a normalised complex pair; global phase is invisible, relative phase steers...
Observables, Expectation Values, and Pauli Operators
Hermitian operators encode questions with real answers: the expectation langlepsi|O|psirangle is...
Primitives: Sampler vs Estimator
Modern quantum SDKs split what you ask into primitives. A sampler returns bitstring statistics; an...
Entanglement: Bell and GHZ States
Entangled states are not products of separate qubit states: the vector lives in the joint space, so...
Scientific Workflow for QML
Treat a QML project like an experiment: fix the task, metric, and classical baseline before...
Extending behaviour with inheritance
When several pipelines share the same storage shape but differ in what happens on each write,...
Overriding parent methods
Overriding replaces the parent's method body while keeping the name familiar to callers. Cleaning...
Subclass-only methods
You inherit everything the parent exposes, then you teach the child something the parent never knew...
Method resolution order and cooperative super()
Multiple inheritance forces a single, deterministic rule for which parent implementation runs when...