Educational Cards

Learn from video content, text, and interactive tasks

Filters
Clear
State Evolution and Interference Intuition

Before measurement, a closed system evolves linearly: amplitudes add with phases attached, and...

Intermediate Quantum State Evolution
Single-Qubit Gates and Circuit Composition

Single-qubit gates are 2times 2 unitaries composed in time order. X swaps populations, Z adds phase...

Beginner Quantum Gates
QML Foundations: Why Quantum Machine Learning?

Quantum machine learning is almost always hybrid : classical code optimizes parameters while a...

Beginner Quantum Machine Learning
Qubits and the Bloch Sphere

A qubit state is a normalised complex pair; global phase is invisible, relative phase steers...

Beginner Quantum States
Observables, Expectation Values, and Pauli Operators

Hermitian operators encode questions with real answers: the expectation langlepsi|O|psirangle is...

Intermediate Quantum Observables
Primitives: Sampler vs Estimator

Modern quantum SDKs split what you ask into primitives. A sampler returns bitstring statistics; an...

Intermediate Quantum Primitives
Entanglement: Bell and GHZ States

Entangled states are not products of separate qubit states: the vector lives in the joint space, so...

Intermediate Quantum Entanglement
Scientific Workflow for QML

Treat a QML project like an experiment: fix the task, metric, and classical baseline before...

Intermediate Quantum ML Methodology
Extending behaviour with inheritance

When several pipelines share the same storage shape but differ in what happens on each write,...

Popular Beginner Python OOP Inheritance
5.0 9
Overriding parent methods

Overriding replaces the parent's method body while keeping the name familiar to callers. Cleaning...

Popular Beginner Python OOP Inheritance
3
Subclass-only methods

You inherit everything the parent exposes, then you teach the child something the parent never knew...

Popular Beginner Python OOP Inheritance
5
Method resolution order and cooperative super()

Multiple inheritance forces a single, deterministic rule for which parent implementation runs when...

Popular Intermediate Python OOP Inheritance
3