Skip to content

qcpydev/qcpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README.md

qcpy - A Quantum Computing Library for Python

qcpy is an open source python library and collaborative project for flexible simulations and visualizations of quantum circuits. This library contains a set of tools to teach computer scientists about the emerging discipline of quantum computing and improve overall understanding.

You can download the package using pip:

pip install qcpydev

Qubit

qcpy.qubit(initial=’z’)

Object representation of a qubit.

Parameters:

initial (chr) default: z - Character input for starting direction in the x, y, or z axis.

Attributes:

None

Example:

from qcpy import qubit

qx = qubit(initial_state = 'x')
qy = qubit(initial_state = 'y')
qz = qubit(initial_state = 'z')
print("x:\n", qx)
print("y:\n", qy)
print("z:\n", qz)


# x:
#  [[0.70710677+0.j]
#  [0.70710677+0.j]]
# y:
#  [[0.70710677+0.j]
#  [0.+0.70710677j]]
# z:
#  [[1.+0.j]
#  [0.+0.j]]

Quantum Gates

quantumgate.identity()

Gate that does not modify the quantum state.

Parameters:

None

identity=[1+0j, 0+0j], 
         [0+0j, 1+0j]

Example:

from qcpy import gates as qg 

print(qg.identity())

# [[1.+0.j 0.+0.j]
#  [0.+0.j 1.+0.j]]

quantumgate.paulix()

Quantum equivalent of the NOT gate in classical computing with respect to the standard basis |0>, |1>.

Parameters:

None

PauliX = [0+0j, 1+0j], 
	 [1+0j, 0+0j]

Example:

from qcpy import gates as qg

print(qg.paulix())

# [[1.+0.j 0.+0.j]
#  [0.+0.j 1.+0.j]]

quantumgate.pauliy()

Rotation around y-axis of the bloch sphere by π radiains, mapping |0> to i|1> and |1> to -i|0>.

Parameters:

None

PauliY = [0+0j, 0-1j],
         [0+1j, 0+0j]

Example:

from qcpy import gates as qg

print(qg.pauliy())

# [[0+0j, 0-1j]
#  [0+1j, 0+0j]]

quantumgate.pauliz()

Rotation around z-axis of the bloch sphere by π radiains, mapping |1> to -|1>; known as the phase-flip.

Parameters:

None

PauliZ = [1+0j, 0+0j], 
         [0+0j, -1+0j]

Example:

from qcpy import gates as qg

print(qg.pauliz())

# [[1+0j, 0+0j], 
#  [0+0j, -1+0j]]

quantumgate.hadamard()

Maps the basis states |0> to |+> and |1> to |->, creating a superposition state if given a computation basis state.

Parameters:

None

Hadamard = [1,  1] 
           [1, -1] * (1/sqrt(2))

Example:

from qcpy import gates as qg

print(qg.hadamard())

# [[ 0.70710677+0.j  0.70710677+0.j]
#  [ 0.70710677+0.j -0.70710677+0.j]]

quantumgate.cnot(little_endian=False)

Controlled gate acts on two or more qubits, performing the NOT operation of the target qubit only if the control qubits are |1>, can act as a quantum regiester and is used to entangle and disentangle Bell states.

Parameters:

little_endian (bool) - if the gate is an inverse, with the target being above the control.

# regular
CNot = [1+0j, 0+0j, 0+0j, 0+0j],
       [0+0j, 1+0j, 0+0j, 0+0j],
       [0+0j, 0+0j, 0+0j, 1+0j],
       [0+0j, 0+0j, 1+0j, 0+0j]
# little_endian = True
CNot = [1+0j, 0+0j, 0+0j, 0+0j],
       [0+0j, 0+0j, 0+0j, 1+0j],
       [0+0j, 0+0j, 1+0j, 0+0j],
       [0+0j, 1+0j, 0+0j, 0+0j] 

Example:

from qcpy import gates as qg

print(qg.cnot())

# [[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]]

# [[1.+0.j 0.+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]
#  [0.+0.j 1.+0.j 0.+0.j 0.+0.j]]

quantumgate.swap()

Swaps two qubits, with respect to the basis |00>, |01>, |10>, and |11>.

Parameters:

None

Swap = [1+0j, 0+0j, 0+0j, 0+0j],
       [0+0j, 0+0j, 1+0j, 0+0j],
       [0+0j, 1+0j, 0+0j, 0+0j],
       [0+0j, 0+0j, 0+0j, 1+0j]

Example:

from qcpy import gates as qg

print(qg.swap())

# [1+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 1+0j, 0+0j],
# [0+0j, 1+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 1+0j]

quantumgate.toffoli()

Universal reversible logic gate, known as the “controlled-controlled-NOT” gate; if the two control bits are set to 1, it will invert the target.

Parameters:

None

Toffoli = [1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
          [0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
          [0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
          [0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j],
          [0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j],
          [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j],
          [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j],
          [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j]

Example:

from qcpy import gates as qg

print(qg.toffoli())

# [1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j]

quantumgate.phase(theta=numpy.pi/2)

Applies a rotation of theta around the z-axis.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation around z-axis.

Phase = [1+0j, 0+0j],
	[0+0j, numpy.exp(0+1j * theta)]

Example:

from qcpy import gates as qg

print(qg.phase())

# [1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j, 0+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j],
# [0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 0+0j, 1+0j, 0+0j]

quantumgate.s()

Equivalent to a pi/2 rotation around the z-axis.

Parameters:

None

S.matrix = [1+0j, 0+0j],
           [0+0j, 0+1j]

Example:

from qcpy import gates as qg

print(qg.s())

# [1+0j, 0+0j],
# [0+0j, 0+1j]

quantumgate.sdg()

Inverse of S gate; a -pi/2 rotation around the z-axis.

Parameters:

None

Sdg.matrix = [1+0j, 0+0j],
             [0+0j, 0-1j]

Example:

from qcpy import gates as qg

print(qg.sdg())

# [1+0j, 0+0j],
# [0+0j, 0-1j]

quantumgate.t()

Square of S gate; where T = S^2.

Parameters:

None

T.matrix = [1+0j, 0+0j],
           [0+0j, numpy.exp((0+1j * numpy.pi) / 4)]

Example:

from qcpy import gates as qg

print(qg.t())

# [[1.+0.j 0.+0.j]
#  [0.+0.j 0.70710677+0.70710677j]]

quantumgate.tdg()

Inverse of T gate.

Parameters:

None

Tdg = [1+0j, 0+0j],
      [0+0j, numpy.exp((0-1j * numpy.pi) / 4)]

Example:

from qcpy import gates as qg

print(qg.tdg())

# [[1.+0.j 0.+0.j]
#  [0.+0.j 0.70710677-0.70710677j]]

quantumgate.rz(theta=numpy.pi/2)

Rotation of qubit around the z-axis.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation around z-axis.

from qcpy import gates as qg
print(qg.rz())

# [numpy.exp((0-1j * (theta / 2))), 0+0j],
#   [0+0j, numpy.exp(0+1j * (theta / 2))]

quantumgate.rx(theta=numpy.pi/2)

Rotation of qubit around the x-axis.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation around x-axis.

Rx = [numpy.cos(theta / 2), 0-1j * numpy.sin(theta / 2)],
     [0-1j * numpy.sin(theta / 2), numpy.cos(theta / 2)]

Example:

from qcpy import gates as qg

print(qg.rx())

# [[0.70710677+0.j 0.-0.70710677j]
#  [0.-0.70710677j 0.70710677+0.j]]

quantumgate.ry(theta=numpy.pi/2)

Rotation of qubit around the y-axis.

Parameters:

theta (float)default: numpy.pi/2 - angle of rotation around y-axis.

Ry = [numpy.cos(theta / 2), -1 * numpy.sin(theta / 2)],
     [numpy.sin(theta / 2), numpy.cos(theta / 2)]

Example:

from qcpy import gates as qg

print(qg.ry())

# [[ 0.70710677+0.j -0.70710677+0.j]
#  [ 0.70710677+0.j  0.70710677+0.j]]

quantumgate.sx()

Rotation around the x-axis by 90 degrees in the counter-clockwise direction. Also known as the “square-root X gate” due to the fact that applying the SX gate twice results in an X gate.

Parameters:

None

Sx = [1+1j, 1-1j], 
     [1-1j, 1+1j] * (1 / 2)

Example:

from qcpy import gates as qg

print(qg.sx())

# [[0.5+0.5j 0.5-0.5j]
#  [0.5-0.5j 0.5+0.5j]]

quantumgate.sxdg()

Inverse of the Sx gate.

Parameters:

None

Sxdg = [1-1j, 1+1j], 
       [1+1j, 1-1j] * (1 / 2)

Example:

from qcpy import gates as qg

print(qg.sxdg())

# [[0.5-0.5j 0.5+0.5j]
#  [0.5+0.5j 0.5-0.5j]]

quantumgate.u(theta=numpy.pi/2, phi=numpy.pi/2, lmbda=numpy.pi/2)

Rotation of qubit with respect to theta, phi, and lambda, in Euler angles.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation around Euler angle theta.

phi (float) default: numpy.pi/2 - angle of rotation around Euler angle phi.

lmbda (float) default: numpy.pi/2 - angle of rotation around Eulear angle lambda.

U.matrix = [numpy.cos(theta / 2), -1 * numpy.exp(0+1j * lmbda) * numpy.sin(theta / 2)], 
           [numpy.exp(0+1j * phi) * numpy.sin(theta / 2), numpy.exp(0+1j * (lmbda + phi)) * numpy.cos(theta / 2)]]

Example:

from qcpy import gates as qg

print(qg.u())

# [[0.7071+0.j -0.-0.7071j]
#  [0.+0.7071j -0.7071+0.j]]

quantumgate.rxx(theta=numpy.pi/2)

Rotation about XX, maximally entangling at theta = pi/2.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation around XX.

Rxx.matrix = [numpy.cos(theta / 2), 0+0j, 0+0j, 0-1j * numpy.sin(theta / 2)],
             [0+0j, numpy.cos(theta / 2), 0-1j * numpy.sin(theta / 2), 0+0j],
             [0+0j, 0-1j * numpy.sin(theta / 2), numpy.cos(theta / 2), 0+0j],
             [0-1j * numpy.sin(theta / 2), 0+0j, 0+0j, numpy.cos(theta / 2)]

Example:

from qcpy import gates as qg

print(qg.rxx())

# [[0.70710677+0.j 0+0.j 0+0.j 0-0.70710677j]
#  [0+0.j 0.70710677+0.j 0-0.70710677j 0+0.j]
#  [0+0.j 0-0.70710677j 0.70710677+0.j 0+0.j]
#  [0-0.70710677j 0+0.j 0.+0.j 0.70710677+0.j]]

quantumgate.rzz(theta=numpy.pi/2)

Rotation about ZZ, maximally entangling at theta = pi/2.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation around ZZ.

Rzz.matrix = [numpy.exp(0-1j * (theta / 2)), 0+0j, 0+0j, 0+0j],
             [0+0j, numpy.exp(0+1j * (theta / 2)), 0+0j, 0+0j],
             [0+0j, 0+0j, numpy.exp(0+1j * (theta / 2)), 0+0j],
             [0+0j, 0+0j, 0+0j, numpy.exp(0-1j * (theta / 2))]

Example:

from qcpy import gates as qg

print(qg.rzz())

# [[0.70710677-0.70710677j 0+0.j 0+0.jn 0+0.j]
#  [0+0.j 0.70710677+0.70710677j 0+0.j 0+0.j]
#  [0+0.j 0+0.j 0.70710677+0.70710677j 0+0.j]
#  [0+0.j 0+0.j 0+0.j 0.70710677-0.70710677j]]

quantumgate.cr(theta=numpy.pi/2)

Controlled phase shift rotation in theta radians; generalization of Cz gate.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation in theta radians.

Cr = [1+0j, 0+0j, 0+0j, 0+0j],
     [0+0j, 1+0j, 0+0j, 0+0j],
     [0+0j, 0+0j, 1+0j, 0+0j],
     [0+0j, 0+0j, 0+0j, exp(theta * 0+1j)]

Example:

from qcpy import gates as qg

print(qg.cr())

# [[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 1+0.j 0+0.j]
#  [0+0.j 0+0.j 0+0.j 0.5403023+0.84147096j]]

quantumgate.cz(theta=numpy.pi/2)

Controlled phase shift rotation in theta radians.

Parameters:

theta (float) default: numpy.pi/2 - angle of rotation in theta radians.

Cz = [1+0j, 0+0j, 0+0j, 0+0j],
     [0+0j, 1+0j, 0+0j, 0+0j],
     [0+0j, 0+0j, 1+0j, 0+0j],
     [0+0j, 0+0j, 0+0j, -1+0j]

Example:

from qcpy import gates as qg

print(qg.cz())

# [[ 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  1.+0.j  0.+0.j]
#  [ 0.+0.j  0.+0.j  0.+0.j -1.+0.j]]

Quantum Circuit

class qcpy.quantumcircuit(qubits: int, big_endian: bool=False, prep: char='z', gpu: bool='false', sparse: bool='false')

Quantum circuit that represents the state of a quantum system and performs operations on select qubits.

Parameters:

qubits (int) - number of qubits in the circuit.

little_endian (bool) default: False - order of qubits and tensor products.

prep (char) options: [z, y, x] - initial direction of the qubits' phase angle.

gpu (bool) default: False - initialize GPU usage for the quantum circuit.

sparse (bool) default: False - use sparse matrix for the quantum circuit.

quantumcircuit.state

Returns state of the quantum circuit.

Parameters:

None

Returns:

state (numpy.ndarray) - array of quantum circuit's state.

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)
qc.cnot(0, 1)

print(qc.state)

# [[0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]
# [0.707+0.j]]

quantumcircuit.size

Returns the number of qubits in the quantum circuit.

Parameters:

None

Returns:

qubits (int) - number of qubits.

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)


print(qc.size)

quantumcircuit.ccx(control_1: int, control_2: int, target: int)

A 3-qubit quantum gate that takes in two control qubits and one target qubit.

Parameters:

control_one (int) - first control qubit.

control_two (int) - second control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(3)

qc.h(0)

qc.h(1)

qc.ccx(0,1,2)

print(qc.state)

# [[0.5+0.j]
# [0. +0.j]
# [0.5+0.j]
# [0. +0.j]
# [0.5+0.j]
# [0. +0.j]
# [0. +0.j]
# [0.5+0.j]]

quantumcircuit.rccx(control_1, control_2, target)

A 3-qubit quantum gate that takes in two control qubits and one target qubit.

Parameters:

control_1 (int) - first control qubit.

control_2 (int) - second control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(3)

qc.h(0)

qc.h(1)

qc.rccx(0,1,2)

print(qc.state)

# [[ 0.5-0.j ]
# [ 0. +0.j ]
# [ 0.5-0.j ]
# [ 0. +0.j ]
# [ 0.5-0.j ]
# [ 0. +0.j ]
# [-0. +0.j ]
# [ 0. +0.5j]]

quantumcircuit.rc3x(qubit_1: int, qubit_2: int, qubit_3: int, qubit_4: int)

A 4-qubit quantum gate that takes in 4 unique qubits.

Parameters:

qubit_1 (int) - first input qubit.

qubit_2 (int) - second input qubit.

qubit_3 (int) - third input qubit.

qubit_4 (int) - fourth input qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(4)

qc.h(0)

qc.h(1)

qc.h(2)

qc.rc3x(0,1,2,3)

print(qc.state)

# [[ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.354-0.j   ]
# [ 0.   +0.j   ]
# [ 0.   +0.354j]
# [-0.   +0.j   ]
# [ 0.   -0.j   ]
# [-0.354+0.j   ]]

quantumcircuit.cx(control: int, target: int)

A 2-qubit quantum gate that takes in a control qubit and one target qubit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.h(0)

qc.cx(0,1)

print(qc.state)

# [[0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]
# [0.707+0.j]]

quantumcircuit.ch(control: int, target: int)

A controlled Hadamard gate to use in the quantum circuit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.ch(0,1)

print(qc.state)

quantumcircuit.cy(control: int, target: int)

A controlled PauliY gate to use in the quantum circuit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.cy(0,1)

print(qc.state)

quantumcircuit.cz(control: int, target: int)

A 2-qubit quantum gate that takes in a control qubit and one target qubit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.h(0)

qc.cz(0,1)

print(qc.state)

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]

quantumcircuit.crx(control: int, target: int)

A controlled RX gate to use in the quantum circuit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.cry(0,1)

print(qc.state)

quantumcircuit.crx(control: int, target: int)

A controlled RY gate to use in the quantum circuit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.cry(0,1)

print(qc.state)

quantumcircuit.crz(control: int, target: int)

A controlled RZ gate to use in the quantum circuit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.crz(0,1)

print(qc.state)

quantumcircuit.cr1(control: int, target: int)

A controlled R1 gate to use in the quantum circuit.

Parameters:

control (int) - control qubit.

target (int) - target qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.cr1(0,1)

print(qc.state)

quantumcircuit.qft(qubit_one: int, qubit_two: int qubit_three: int)

Use the QFt algorithm in the quantum circuit.

Parameters:

qubit_one (int) - first qubit.

qubit_two (int) - second qubit.

qubit_three (int) - third qubit.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.qft(0,1)

print(qc.state)

quantumcircuit.swap(qubit_1: int, qubit_2: int)

A 2-qubit quantum gate that takes in 2 qubits to swap there properties.

Parameters:

qubit_1 (int) - first qubit to swap.

qubit_2 (int) - second qubit to swap.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.h(0)

qc.swap(0,1)

print(qc.state)

# [[0.707+0.j]
# [0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]]

quantumcircuit.rxx(qubit_1: int, qubit_2: int, theta: float=numpy.pi/2)

A 2-qubit quantum gate that takes in two qubits and a representation of theta to initialize in the quantum state.

Parameters:

qubit_1 (int) - first qubit input.

qubit_2 (int) - second qubit input.

theta (float) default: numpy.pi/2 - angle of rotation around z-axis.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.h(0)

qc.rxx(0,1)

print(qc.state)

# [[0.5+0.j ]
# [0. -0.5j]
# [0.5+0.j ]
# [0. -0.5j]]

quantumcircuit.rzz(qubit_1, qubit_2, theta=numpy.pi/2)

A 2-qubit quantum gate that takes in two qubits and a representation of theta to initialize in the quantum state.

Parameters:

qubit_1 (int) - first qubit input.

qubit_2 (int) - second qubit input.

theta (float) default: numpy.pi/2 - angle of rotation around z-axis.

Returns:

None

Example:

from qcpy import quantumcircuit
qc = quantumcircuit(2)

qc.h(0)

qc.rxx(0,1)

print(qc.state)

# [[0.5+0.j ]
# [0. -0.5j]
# [0.5+0.j ]
# [0. -0.5j]]

quantumcircuit.multicustom(control: int, target: int, gate: np.array)

Inset a custom controlled gate into the quantum circuit.

Parameters:

control (int) - control qubit for given matrix.

target (int) - target qubit for given matrix.

gate (np.array) - (2,2) matrix to be applied to the quantum circuit.

Returns:

None

Example:

from qcpy import quantumcircuit, paulix

qc = quantumcircuit(2)

qc.h(0)

qc.multicustom(0,1, paulix())

print(qc.state)

# [[0.707+0.j]
# [0.   +0.j]
# [0.   +0.j]
# [0.707+0.j]]

quantumcircuit.i(qubit: int)

Used to confirm value that a qubit is representing and does nothing to manipulate the value of such qubit.

Parameters:

qubit (int) - the qubit to have the identity gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.i(0)

print(qc.state)

# [[1.+0.j]
# [0.+0.j]
# [0.+0.j]
# [0.+0.j]]

quantumcircuit.x(qubit: int)

Used to invert the value of what a qubit is representing.

Parameters:

qubit (int) - the qubit to have the Pauli-X gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.x(0)

print(qc.state)

# [[0.+0.j]
# [0.+0.j]
# [1.+0.j]
# [0.+0.j]]

quantumcircuit.h(qubit: int)

Used to put a given qubit into superposition.

Parameters:

qubit (int) - the qubit to have the Hadamard gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

print(qc.state)

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]

quantumcircuit.y(qubit: int)

Changes the state of a qubit by pi around the y-axis of a Bloch Sphere.

Parameters:

qubit (int) - the qubit to have the Pauli-Y gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.y(0)

print(qc.state)

# [[0.+0.j]
# [0.+0.j]
# [0.+1.j]
# [0.+0.j]]

quantumcircuit.z(qubit: int)

Changes the state of a qubit by pi around the z-axis of a Bloch Sphere.

Parameters:

qubit (int) - the qubit to have the Pauli-Z gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.z(0)

print(qc.state)

# [[ 0.707+0.j]
# [ 0.   +0.j]
# [-0.707+0.j]
# [ 0.   +0.j]]

quantumcircuit.p(qubit: int, theta: float=numpy.pi/2)

Commits to a rotation around the z-axis based off of the inputted theta value.

Parameters:

qubit (int) - the qubit to have the Phase gate be applied to the quantum wire.

theta (float) default: numpy.pi/2 - angle of rotation around z-axis.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.p(0)

print(qc.state)

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   +0.707j]
# [0.   +0.j   ]]

quantumcircuit.s(qubit: int)

Is a Phase gate where the inputted theta value is given as a constant of theta = pi / 2.

Parameters:

qubit (int) - the qubit to have the Pauli-Z gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.s(0)

print(qc.state)

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   +0.707j]
# [0.   +0.j   ]]

quantumcircuit.sdg(qubit: int)

Is a Phase gate and inverse of the S gate where the inputted theta value is given as a constant of theta = -pi / 2.

Parameters:

qubit (int) - the qubit to have the Sdg gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.sdg(0)

print(qc.state)

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   -0.707j]
# [0.   +0.j   ]]

quantumcircuit.t(qubit: int)

T gate is a special use case gate that in implemented from the P Gate.

Parameters:

qubit (int) - the qubit to have the T gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.t(0)

print(qc.state)

# [[0.707+0.j ]
# [0.   +0.j ]
# [0.5  +0.5j]
# [0.   +0.j ]]

quantumcircuit.tdg(qubit: int)

Tdg gate is a special use case gate that in implemented from the P Gate and is the inverse of the T gate.

Parameters:

qubit (int) - the qubit to have the Tdg gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.tdg(0)

print(qc.state)

# [[0.707+0.j ]
# [0.   +0.j ]
# [0.5  -0.5j]
# [0.   +0.j ]]

quantumcircuit.rz(qubit: int, theta: float=numpy.pi/2)

RZ gate commits a rotation around the z-axis for a qubit.

Parameters:

qubit (int) - the qubit to have the Rz gate be applied to the quantum wire.

theta (float) default: numpy.pi/2 - angle of rotation around z-axis.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.h(0)

qc.rz(0)

print(qc.state)

# [[0.5-0.5j]
# [0. +0.j ]
# [0.5+0.5j]
# [0. +0.j ]]

quantumcircuit.ry(qubit: int, theta: float=numpy.pi/2)

RY gate commits a rotation around the y-axis for a qubit.

Parameters:

qubit (int) - the qubit to have the Ry gate be applied to the quantum wire.

theta (float) default: numpy.pi/2 - angle of rotation around y-axis.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.ry(0)

print(qc.state)

# [[0.707+0.j]
# [0.   +0.j]
# [0.707+0.j]
# [0.   +0.j]]

quantumcircuit.rx(qubit: int, theta: float=numpy.pi/2)

RX gate commits a rotation around the x-axis for a qubit.

Parameters:

qubit (int) - the qubit to have the Ry gate be applied to the quantum wire.

theta (float) default: numpy.pi/2 - angle of rotation around x-axis.

Returns:

None

Example:

from qcpy import quantumCircuit

qc = quantumcircuit(2)

qc.rx(0)

print(qc.state)

# [[0.707+0.j   ]
# [0.   +0.j   ]
# [0.   -0.707j]
# [0.   +0.j   ]]

quantumcircuit.sx(qubit: int)

SX gate is the square root of the Inverse gate (X, PauliX Gate).

Parameters:

qubit (int) - the qubit to have the Sx gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.sx(0)

print(qc.state)

# [[0.5+0.5j]
# [0. +0.j ]
# [0.5-0.5j]
# [0. +0.j ]]

quantumcircuit.sxdg(qubit: int)

SXDG gate is the negative square root of the Inverse gate (X, PauliX Gate) and inverse of the SX gate.

Parameters:

qubit (int) - the qubit to have the SXdg gate be applied to the quantum wire.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.sxdg(0)

print(qc.state)

# [[0.5-0.5j]
# [0. +0.j ]
# [0.5+0.5j]
# [0. +0.j ]]

quantumcircuit.u(qubit: int, theta: float=numpy.pi/2, phi: float=numpy.pi/2, lmbda: float=numpy.pi/2)

U gate is given three inputs (theta, phi, and lambda) that allow the inputs to manipulate the base matrix to allow for the position of the enacted qubit around the bloch sphere representation.

Parameters:

qubit (int) - the qubit to have the U gate be applied to the quantum wire.

theta (float) default: numpy.pi/2 - angle representation to rotate the qubit's representation.

phi (float) default: numpy.pi/2 - angle representation to rotate the qubit's representation.

lmbda (float) default: numpy.pi/2 - angle representation to rotate the qubit's representation.

Returns:

None

Example:

from qcpy import quantumcircuit

qc = quantumcircuit(2)

qc.u(0)

print(qc.state)

# [[0.5-0.5j]
# [0. +0.j ]
# [0.5+0.5j]
# [0. +0.j ]]

quantumcircuit.custom(qubit: int, custom_matrix: np.array)

Will take in a custom single qubit quantum gate and implement it on a qubit.

Parameters:

qubit (int) - the qubit to have the U gate be applied to the quantum wire.

custom_matrix (np.array) - matrix to be applied to the quantum circuit.

Returns:

None

Example:

from qcpy import quantumcircuit, gates as qg

qc = quantumcircuit(2)

qc.custom(0, qg.cx())

print(qc.state)

# [[0.+0.j]
# [0.+0.j]
# [1.+0.j]
# [0.+0.j]]

quantumcircuit.gatearray(custom_matrix: List)

Will take in a custom single qubit quantum gate and implement it on a qubit.

Parameters:

custom_matrix (List) - Array of (2,2) matrix to apply to the quantum circuit.

Returns:

None

Example:

from qcpy import quantumcircuit, gates as qg


qc = quantumcircuit(2)
arr = [qg.hadamard()] * 2
qc.gatearray(arr)
print(qc.state)

# [[0.5+0.j]
# [0.5+0.j]
# [0.5+0.j]
# [0.5+0.j]]

Visualize

A collection of tools to visualize the quantum circuit

qcpy.visualize.qsphere(*quantumstate: (ndarray, QuantumCircuit), path: str="qsphere.png", save: bool=False, show: bool=True, light: bool=False)

Returns a Q-Sphere that plots a global visualization of the quantum states in a 3D global view

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

path (str) - name of the image to be saved.

save (bool) - save the image.

show (bool) - present in matplotlib.

light (bool) - toggle light and dark mode.

Returns:

None

Example:

from qcpy import quantumcircuit, visualize

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)

visualize.qsphere(qc)

qcpy.visualize.bloch(*quantumstate: (ndarray, QuantumCircuit), path: str="BlochSphere.png", save: bool=False, show: bool=True, light: bool=False)

Returns a Bloch Sphere that plots the quantum state of a single qubit in a 3D global view

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

path (str) - name of the image to be saved.

save (bool) - save the image.

show (bool) - present in matplotlib.

light (bool) - toggle light and dark mode.

Returns:

None

Example:

from qcpy import quantumcircuit, visualize

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)

visualize.bloch(qc)

qcpy.visualize.statevector(*quantumstate: (ndarray, QuantumCircuit), path: str="statevector.png", save: bool=False, show: bool=True, light: bool=False)

Returns a graph that plots all the amplitudes of the qubits being measured

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

path (str) - name of the image to be saved.

save (bool) - save the image.

show (bool) - present in matplotlib.

light (bool) - toggle light and dark mode.

Returns:

None

Example:

from qcpy import quantumcircuit, visualize

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)

visualize.statevector(qc)

qcpy.visualize.probability(*quantumstate: (ndarray, QuantumCircuit), path: str="probability.png", save: bool=True, show: bool=True, light: bool=False)

Returns a graph that plots all the probabilities of the qubits being measured

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

path (str) - name of the image to be saved.

save (bool) - save the image.

show (bool) - present in matplotlib.

light (bool) - toggle light and dark mode.

Returns:

None

Example:

from qcpy import quantumcircuit, visualize

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)

visualize.probability(qc)

Tools

A collection of tools to represent a quantum state

qcpy.tools.probability(quantumstate: (ndarray, QuantumCircuit), show_percent: bool=False, show_bit: int=-1, round: int=3)

Returns an array of the probability of the quantum circuit

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

show_bit (int, str) - Output a single value from the calculation, enter either a binary string or integer.

round (int) - Round the the nth decimal point.

show_percent (bool) - Output the probability in percentages instead of floats.

Returns:

NDArray

Example:

from qcpy import quantumcircuit, probability

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)
probability(qc)

qcpy.tools.amplitude(quantumstate: (ndarray, QuantumCircuit), show_bit: (str, int)=-1, round: int=3, radian: bool=True)

Returns an array of the amplitude of the quantum circuit

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

show_bit (int, str) - Output a single value from the calculation, enter either a binary string or integer.

round (int) - Round the the nth decimal point.

radians (bool) - Output the calculation in radians.

Returns:

NDArray

Example:

from qcpy import quantumcircuit, amplitude

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)
amplitude(qc)

qcpy.tools.phaseangle(quantumstate: (ndarray, QuantumCircuit), show_bit: (str, int), round: int=3, radian: bool=True)

Returns a graph that plots all the probabilities of the qubits being measured

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

show_bit (int, str) - Output a single value from the calculation, enter either a binary string or integer.

round (int) - Round the the nth decimal point.

radians (bool) - Output the calculation in radians.

Returns:

NDArray

Example:

from qcpy import quantumcircuit, phaseangle

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)
phaseangle(qc)

qcpy.tools.measure(quantumstate: (ndarray, QuantumCircuit))

Returns a binary string that could be outputted from the quantum circuit.

Parameters:

quantumstate (quantumcircuit) - quantum circuit to represent.

Returns:

str

Example:

from qcpy import quantumcircuit, measure

qc = quantumcircuit(3)

qc.h(0)
qc.h(1)
qc.h(2)
measure(qc)