IonQ Aria
#AQ 25
25 algorithmic qubits with 99.5%+ two-qubit gate fidelity. The primary system available via AWS Braket and Azure Quantum for most cloud users. Best for mid-depth circuits and learning.
Trapped Ion
All-to-all connectivity. Commercial trapped-ion quantum computing with industry-leading algorithmic qubit performance.
About IonQ
IonQ was founded in 2015 by Christopher Monroe and Jungsang Kim, both leading researchers in trapped-ion quantum information at the University of Maryland and Duke University. The company went public in 2021, becoming the first pure-play quantum computing company listed on the NYSE.
IonQ uses Ytterbium-171 ions suspended in a Paul trap using oscillating electric fields. Each ion is an identical copy of every other: unlike superconducting qubits, which are fabricated and vary in frequency, every IonQ qubit is a single atom with precisely known quantum states. Laser pulses drive transitions between the ground state |0> and the excited state |1>. Two-qubit gates exploit the shared motional modes of the ion chain, which means any two qubits can interact directly without routing through intermediate qubits.
IonQ introduced the algorithmic qubit (#AQ) metric to quantify the useful computational capacity of a quantum processor, accounting for both qubit count and gate fidelity. A system with #AQ N can reliably run a random circuit of depth N using N qubits. This is more useful than raw qubit count alone.
Hardware Specifications
| Specification | Value |
|---|---|
| Current systems | IonQ Aria, IonQ Forte |
| Algorithmic qubits (#AQ) | #AQ 25 (Aria), #AQ 35+ (Forte) |
| Two-qubit gate fidelity | 99.5%+ |
| Qubit technology | Ytterbium trapped ions |
| Connectivity | All-to-all (any qubit pair) |
| Coherence time | Seconds to minutes |
| Gate time (2Q) | ~100–600 microseconds |
| Cloud access | AWS Braket, Azure Quantum, Google Cloud, IonQ Cloud |
| Supported SDKs | Qiskit, Cirq, Amazon Braket SDK, Q#, PennyLane |
#AQ 25
25 algorithmic qubits with 99.5%+ two-qubit gate fidelity. The primary system available via AWS Braket and Azure Quantum for most cloud users. Best for mid-depth circuits and learning.
#AQ 35+
IonQ's next-generation system. The Forte uses a barium co-trapping approach for improved mid-circuit measurement. Higher #AQ enables deeper, more complex algorithms. Available via IonQ Cloud direct access.
Use Cases
All-to-all connectivity means QAOA and VQE circuits compile with zero SWAP overhead, preserving circuit depth and fidelity.
Long coherence times (seconds) combined with high fidelity gates enable multi-round error correction experiments.
High gate fidelity reduces accumulated error in deep fermionic simulations, making molecular energy calculations more accurate.
Native connectivity maps naturally to fully-connected Ising models used in combinatorial optimization without routing penalties.
Low noise and high fidelity improve gradient estimates in parameterized quantum circuits used for QML experiments.
The #AQ metric provides a hardware-agnostic way to assess true algorithmic throughput, useful for comparing platforms.
Getting Started
The fastest way to access IonQ hardware is via Amazon Braket. Create a free AWS account at aws.amazon.com. New accounts receive AWS Free Tier credits. Braket simulators are free within the first hour per month.
pip install amazon-braket-sdk
The SDK supports Python 3.9+. Set your AWS credentials via aws configure or environment variables. See the Braket reference for full setup details.
from braket.aws import AwsDevice
from braket.circuits import Circuit
device = AwsDevice("arn:aws:braket:us-east-1::device/qpu/ionq/Aria-1")
bell = Circuit().h(0).cnot(0, 1)
task = device.run(bell, shots=100)
print(task.result().measurement_counts) This creates a Bell state and runs it on IonQ Aria. With all-to-all connectivity, the CNOT compiles directly with no SWAP insertions needed.
If you prefer Cirq or Google Cloud, install cirq-ionq and authenticate with Google Cloud credentials. IonQ is also available as a Cirq backend directly. See the Cirq reference and the Cirq hello world tutorial.
pip install cirq-ionq Academic researchers and students can apply for free QPU time via the IonQ Research Program. Credits are awarded based on research merit and typically provide direct access to IonQ Forte.
Pricing
IonQ hardware is available through multiple cloud providers, each with different pricing models. Costs are incurred per shot (measurement) and sometimes per task (job submission).
Per shot + per task
$0.01 per shot on IonQ hardware. Per-task fee applies. Free Tier: 1 hour simulation per month (simulator only).
View pricing details →Credits + pay-per-use
New accounts receive $500 USD in Azure Quantum Credits. IonQ hardware charged per shot after credits are exhausted.
View pricing details →Pay per shot
Available via Google Cloud Marketplace. Pricing mirrors AWS Braket rates. Requires Google Cloud billing account.
View pricing details →Free credits for researchers
IonQ offers free QPU credits for academic researchers and students via the IonQ Research Program. Apply directly.
View pricing details →Learning Resources