Hello (Many Quantum) World(s)

Historically, the first program you write for a new computer language is “Hello World,” or, if you are in Texas, “Howdy World.” But with quantum computing on the horizon, you need something better. Like “Hello Many Worlds.” [IonQ] proposes what that looks like and then writes it in seven different quantum languages in a post you should check out.

Here’s the description of the simple program:

The basic quantum program we’ll write is simple. It creates a fully-entangled state between two qubits, and then measures this state. This state is sometimes called a Bell State, or Bell Pair, after physicist John Stewart Bell.

The measurement results for this program should give us 0 for both qubits or 1 for both qubits, in equal amounts. When running these, we’ll be able to tell that we’re running on real hardware because that’s not always what we get! These errors are what currently limit quantum computers, but the first steps to overcome this with quantum error correction have already begun.

The languages include IBM’s Qiskit, Microsoft’s Q#, Amazon’s Braket, Google’s Cirq, ETH Zurich’s ProjecctQ, Pennylane, Pytket, and XACC. If you are wondering which of these to learn, it is interesting to see the differences between them.

For example, Braket looks nice and simple:


from braket.circuits import Circuit
qc = Circuit().h(0).cnot(control=0, target=1)
print(qc)

None of the languages look too complex, but sometimes the setup to run them on remote quantum computers is a bit more code. Many of these could also be run on a simulator if you want the practice.

We noted that Twist — a relatively new language, wasn’t on the list. If you want a gentle introduction to quantum, try our series.

9 thoughts on “Hello (Many Quantum) World(s)

    1. Yes and no.

      In all seriousness though, I did my grad project on it three years ago, it’s a fascinating topic. Less akin to boxcat alive or dead and more like zombie/vampire cat outbreak where measurement is akin to applying a mist of dubious experimental cure into the area. The undead cats then either live or die accordingly.

      The blog Algorithmic assertions has a pretty solid online simulator, quirk, I highly suggest it for anyone who wants to dip their feet or just look at the examples even. Strangeworks is also interesting, though admittedly, I haven’t had much time to play with their site yet.

Leave a Reply to ViktorCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.