Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 905 Bytes

File metadata and controls

25 lines (19 loc) · 905 Bytes

Quantum Computing - Grover's Algorithm

This project visualizes and demonstrates Grover's Algorithm using Qiskit and Jupyter Notebooks.

Getting Started (Windows)

To avoid any venv or dependency issues:

  1. Double click setup_env.bat to automatically create a virtual environment (venv) and install all required packages (including Jupyter and Qiskit).
  2. Once finished, open Command Prompt or PowerShell in this folder.
  3. Activate the environment:
    venv\Scripts\activate
  4. Start Jupyter Notebook:
    jupyter notebook
  5. Open any of the .ipynb files to run the project.

Project Files

  • Grover_Algorithm_CircuitBuilder.ipynb: Builds and visualizes the quantum circuit.
  • Grover_Interactive_Visualizer.ipynb: Interactive simulation of the algorithm.
  • ClassicalVsGrover_Comparison.ipynb: Compares classical vs quantum search performance.