├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Vivek Patil 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Learning Quantum Computing 2 | Pool of Resources arranged in proper order to get started with Quantum Computing. I'll be adding more resources as I get them. If you have anything to add, feel free to create a Pull Request. 3 | 4 | ### The Bible 5 | Quantum Computation and Quantum Information - 10th Anniversary Edition by Michael A. Nielson & Issac L. Chuang - [Ebook](http://mmrc.amss.cas.cn/tlb/201702/W020170224608149940643.pdf) . 6 | This book is considered to be the bible in Quantum Computing field. It explains each and every concept clearly, hence it's a must for any beginner. 7 | 8 | 9 | ### Courses 10 | Few Quantum Computing Courses: 11 | 12 | 1) Coursera - The Introduction to Quantum Computing 13 | [Link](https://www.coursera.org/learn/quantum-computing-algorithms) 14 | 15 | 2) Brilliant - Quantum Computing [Link](https://brilliant.org/courses/quantum-computing/) 16 | 17 | 3) edX - Quantum Machine Learning [Link](https://www.edx.org/course/quantum-machine-learning) 18 | 19 | 4) edX - The building blocks of a quantum computer (Part 1) [Link](https://www.edx.org/course/the-building-blocks-of-a-quantum-computer-part-1) 20 | 21 | 5) edX - Quantum Internet [Link](https://www.edx.org/course/the-quantum-internet-and-quantum-computers-how-will-they-change-the-world) 22 | 23 | 24 | ### Useful Wesbsites 25 | 1) Quantum Computing Report - This website contains all the resources you'll need from Books to Players in market. [Link](https://quantumcomputingreport.com/) 26 | 27 | 2) Quantum Computing for the very curious by Andy Matuschak and Michael Nielson [Link](https://quantum.country/qcvc) 28 | 29 | 30 | ### Programming in Quantum Computing 31 | There are quite a lot of programming languages which are coming up. But most of them are Python libraries. 32 | 33 | 1) Qiskit - An open source Python library developed by IBM- [Link](https://qiskit.org/) 34 | 35 | 2) Q# - A special programming language developed by Microsoft on the grounds on C#. Here you'll also find material to clear your QC concepts. [Link](https://docs.microsoft.com/en-us/quantum/?view=qsharp-preview) 36 | 37 | 3) Cirq - It's a framework designed by Google to work with NISQ computer - [Link](https://github.com/quantumlib/Cirq) 38 | --------------------------------------------------------------------------------