Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit 95454fb

Browse files
authored
Merge pull request #979 from gunchamalik/patch-1
Update 1_getting_started_with_qiskit.ipynb
2 parents 2083518 + 4afa6b9 commit 95454fb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tutorials/circuits/1_getting_started_with_qiskit.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"# Getting Started with Qiskit\n",
88
"\n",
9-
"Here, we provide an overview of working with Qiskit. The fundamental package of Qiskit is Terra that provides the basic building blocks necessary to program quantum computers. The fundamental unit of Qiskit is the [**quantum circuit**](https://en.wikipedia.org/wiki/Quantum_circuit). A basic workflow using Qiskit consists of two stages: **Build** and **Execute**. **Build** allows you to make different quantum circuits that represent the problem you are solving, and **Execute** that allows you to run them on different backends. After the jobs have been run, the data is collected and postprocessed depending on the desired output."
9+
"Here, we provide an overview of working with Qiskit. The fundamental package of Qiskit is Terra that provides the basic building blocks necessary to program quantum computers. The fundamental unit of Qiskit is the [quantum circuit](https://en.wikipedia.org/wiki/Quantum_circuit). A basic workflow using Qiskit consists of two stages: **Build** and **Execute**. **Build** allows you to make different quantum circuits that represent the problem you are solving, and **Execute** that allows you to run them on different backends. After the jobs have been run, the data is collected and postprocessed depending on the desired output."
1010
]
1111
},
1212
{
@@ -61,9 +61,9 @@
6161
"$$|\\psi\\rangle = \\left(|000\\rangle+|111\\rangle\\right)/\\sqrt{2}.$$\n",
6262
"\n",
6363
"To create such a state, we start with a three-qubit quantum register. By default, each qubit in the register is initialized to $|0\\rangle$. To make the GHZ state, we apply the following gates:\n",
64-
"* A Hadamard gate $H$ on qubit 0, which puts it into the superposition state $\\left(|0\\rangle+|1\\rangle\\right)/\\sqrt{2}$.\n",
65-
"* A controlled-Not operation ($C_{X}$) between qubit 0 and qubit 1.\n",
66-
"* A controlled-Not operation between qubit 0 and qubit 2.\n",
64+
"- A Hadamard gate $H$ on qubit 0, which puts it into the superposition state $\\left(|0\\rangle+|1\\rangle\\right)/\\sqrt{2}$.\n",
65+
"- A controlled-Not operation ($C_{X}$) between qubit 0 and qubit 1.\n",
66+
"- A controlled-Not operation between qubit 0 and qubit 2.\n",
6767
"\n",
6868
"On an ideal quantum computer, the state produced by running this circuit would be the GHZ state above.\n",
6969
"\n",

0 commit comments

Comments
 (0)