After five years of development, Quantum Odyssey is set for its official release in Q3 2024. This software turns the vast field of Quantum Information Science into an engaging video game, available for purchase on Steam. We aim to demonstrate that challenges in Quantum Information Science are essentially enjoyable puzzles and that even 12-year-olds can solve and enjoy the journey.
We Bringing Quantum Algorithms to Life
We take pride in having developed the world's most efficient quantum algorithms training software, which has been proven to transform individuals of any age and background into proficient quantum computing practitioners in just a few weeks.
For Educators
For Self-Directed Learners
import numpy as np
from numpy import array
from qiskit import QuantumCircuit,QuantumRegister,ClassicalRegister
gate_cap =4
nr_q=2
qc = QuantumCircuit(QuantumRegister(2), ClassicalRegister(2))
qc.barrier()
qc.h(0)
qc.id(1)
qc.barrier()
unit=array([[1.+0.j, 0.+0.j, 0.+0.j, 0.+0.j],
[0.+0.j, 1.+0.j, 0.+0.j, 0.+0.j],
[0.+0.j, 0.+0.j, 0.+0.j, 1.+0.j],
[0.+0.j, 0.+0.j, 1.+0.j, 0.+0.j]])
qubits=[0, 1]
name="c_0_x_1_"
qc.unitary(unit,qubits[::-1],name)
qc.measure(qc.qregs[0][0], qc.cregs[0][1])
qc.measure(qc.qregs[0][1], qc.cregs[0][0])
Our Social Mission Explained