top of page
quarks-qo-logo-home-1 (1).png

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.

Quantum promo image_edited_edited.jpg

We Bringing Quantum Algorithms to Life

line 1.png

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

line 1.png

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]) 

Bell State (1).gif

Our Social Mission Explained

line 1.png
bottom of page