본문 바로가기

리디 접속이 원활하지 않습니다.
강제 새로 고침(Ctrl + F5)이나 브라우저 캐시 삭제를 진행해주세요.
계속해서 문제가 발생한다면 리디 접속 테스트를 통해 원인을 파악하고 대응 방법을 안내드리겠습니다.
테스트 페이지로 이동하기

Quantum Computing in Practice with Qiskit® and IBM Quantum Experience® 상세페이지

컴퓨터/IT 개발/프로그래밍 ,   컴퓨터/IT IT 해외원서

Quantum Computing in Practice with Qiskit® and IBM Quantum Experience®

Practical recipes for quantum computer coding at the gate and algorithm level with Python
소장전자책 정가21,000
판매가21,000
Quantum Computing in Practice with Qiskit® and IBM Quantum Experience® 표지 이미지

Quantum Computing in Practice with Qiskit® and IBM Quantum Experience®작품 소개

<Quantum Computing in Practice with Qiskit® and IBM Quantum Experience®> Understand the nuances of programming traditional quantum computers and solve the challenges of the future while building and executing quantum programs on IBM Quantum hardware and simulators

▶Book Description
IBM Quantum Experience® is a leading platform for programming quantum computers and implementing quantum solutions directly on the cloud. This book will help you get up to speed with programming quantum computers and provide solutions to the most common problems and challenges.

You'll start with a high-level overview of IBM Quantum Experience® and Qiskit®, where you will perform the installation while writing some basic quantum programs. This introduction puts less emphasis on the theoretical framework and more emphasis on recent developments such as Shor's algorithm and Grover's algorithm. Next, you'll delve into Qiskit®, a quantum information science toolkit, and its constituent packages such as Terra, Aer, Ignis, and Aqua. You'll cover these packages in detail, exploring their benefits and use cases. Later, you'll discover various quantum gates that Qiskit® offers and even deconstruct a quantum program with their help, before going on to compare Noisy Intermediate-Scale Quantum (NISQ) and Universal Fault-Tolerant quantum computing using simulators and actual hardware. Finally, you'll explore quantum algorithms and understand how they differ from classical algorithms, along with learning how to use pre-packaged algorithms in Qiskit® Aqua.

By the end of this quantum computing book, you'll be able to build and execute your own quantum programs using IBM Quantum Experience® and Qiskit® with Python.

▶What You Will Learn
⦁Visualize a qubit in Python and understand the concept of superposition
⦁Install a local Qiskit® simulator and connect to actual quantum hardware
⦁Compose quantum programs at the level of circuits using Qiskit® Terra
⦁Compare and contrast Noisy Intermediate-Scale Quantum computing (NISQ) and Universal Fault-Tolerant quantum computing using simulators and IBM Quantum® hardware
⦁Mitigate noise in quantum circuits and systems using Qiskit® Ignis
⦁Understand the difference between classical and quantum algorithms by implementing Grover's algorithm in Qiskit®

▶Key Features
⦁Work your way up from writing a simple quantum program to programming complex quantum algorithms
⦁Explore the probabilistic nature of qubits by performing quantum coin tosses and using random number generators
⦁Delve into quantum algorithms and their practical applications in various domains

▶Who This Book Is For
This book is for developers, data scientists, machine learning researchers, or quantum computing enthusiasts who want to understand how to use IBM Quantum Experience® and Qiskit® to implement quantum solutions and gain practical quantum computing experience. Python programming experience is a must to grasp the concepts covered in the book more effectively. Basic knowledge of quantum computing will also be beneficial.

▶What this book covers

This cookbook is a problem-solution- and exploration-based approach to understanding the nuances of programming quantum computers with the help of IBM Quantum Experience®, Qiskit®, and Python.

⦁ Chapter 1, Preparing Your Environment, walks you through how to install Qiskit® as a Python 3.5 extension on your local workstation. You'll also register with IBM Quantum Experience®, get your API key, and grab the sample code.

⦁ Chapter 2, Quantum Computing and Qubits with Python, shows how to use Python to code simple scripts to walk you through the concept of bits and qubits and how quantum gates work without Qiskit® or IBM Quantum Experience®.

⦁ Chapter 3, IBM Quantum Experience® – Quantum Drag and Drop, looks at IBM Quantum Experience®, IBM Quantum's online, cloud-based drag-and-drop tool for programming quantum computers. Here you will code a simple program and learn how to move between Qiskit® and IBM Quantum Experience®.

⦁ Chapter 4, Starting at the Ground Level with Terra, explores a set of basic quantum programs, or circuits, to examine fundamental concepts such as probabilistic computing, superposition, entanglement, and more. We will also run our first programs on an actual physical IBM quantum computer.

⦁ Chapter 5, Touring the IBM Quantum® Hardware with Qiskit®, looks at the IBM Quantum® backends, exploring various physical aspects that impact the results of your quantum programs.

⦁ Chapter 6, Understanding the Qiskit® Gate Library, gives an overview of the quantum gates that are offered out of the box with Qiskit® to see what they do to your qubits. We take a look at the universal quantum gates from which all other quantum gates are built, and also expand from one-qubit gates, to the two-, three-, and more qubit gates needed for more advanced quantum circuits.

⦁ Chapter 7, Simulating Quantum Computers with Aer, helps you run your circuits on a collection of simulators that you can use locally or in the cloud. You can even set your simulators up to mimic the behavior of an IBM Quantum® backend, to test your circuits under realistic conditions on your local machine.

⦁ Chapter 8, Cleaning Up Your Quantum Act with Ignis, explains how to clean up your measurement results by understanding how our qubits behave, and looks at how we can correct for noise by using noise mitigation circuits such as the Shor code.

⦁ Chapter 9, Grover's Search Algorithm, builds Grover's search algorithm, a quadratic speedup of classical search algorithms. We will use a unique quantum tool, quantum phase kickback. We build several different versions of the algorithm to run on both simulators and IBM Quantum® backends.

⦁ Chapter 10, Getting to Know Algorithms with Aqua, uses premade Qiskit Aqua versions of two of the most well-known quantum algorithms: Grover's search algorithm and Shor's factoring algorithm. We also take a quick tour of the Qiskit Aqua algorithm library.


출판사 서평

▶ Preface
IBM Quantum Experience® with Qiskit® together form a popular and easy-to-use quantum computing platform. They let you access and program actual IBM quantum computer hardware in the cloud, but you can also run your code on local and cloud-based simulators.

This book is designed to teach you how to implement quantum programming in a Python® environment, first at an elementary level, and later moving to more advanced examples. The locally installable Quantum Information Science Toolkit (Qiskit) software is built on Python and represents the most accessible tool available today for learning quantum computing.

Throughout the recipes of this book, we will introduce the Qiskit classes and methods step by step, starting with the very basic concepts such as installing and upgrading Qiskit, checking which version you are running, and so on. We then move on to understanding the building blocks that are required to create and run quantum programs and how to integrate these Qiskit components in your own hybrid quantum/classical programs to leverage Python's powerful programming features.

We'll explore, compare and contrast Noisy Intermediate-Scale Quantum (NISQ) computers and universal fault-tolerant quantum computers using simulators and actual hardware, looking closely at simulating noisy backends and how to mitigate for noise and errors on actual hardware, implementing the Shor code method for quantum error correction of a single qubit.

Finally, we'll take a look at quantum algorithms to see how they differ from classical algorithms. We will take a closer look at coding Grover's algorithm, and then use Qiskit Aqua to run versions of Grover's and Shor's algorithms to show how you can reuse already constructed algorithms directly in your Qiskit code. We do all of this as a sweeping tour of Qiskit, IBM's quantum information science toolkit, and its constituent layers: Terra, Aer, Ignis, and Aqua.

We will also use the online IBM Quantum Experience® user interface for drag-and-drop quantum computing. Everything we do in this book, and way more, can be coded in the cloud on IBM Quantum Experience®.

Each chapter contains code samples to explain the principles taught in each recipe.


저자 소개

▶About the Author
- Hassi Norlen
Hassi Norlen is an educator, physicist, and software developer, long fascinated with computer programming, both small and large, new and old. He stumbled into the quantum-computing universe a few short years ago and has since then been lucky enough to engage in this fascinating field both professionally and as a hobby.

In his day job with IBM, he designs content in the AI Applications division. In his spare time, he spreads the word on the Qiskit® open source SDK and quantum computing as an IBM Quantum Ambassador and Qiskit Advocate: lecturing, coding, and hosting quantum-computing workshops.
He traces his roots back to Sweden, with the United States being his recently adopted homeland, and is currently enjoying the Bavarian Alps in southern Germany on an IBM Global assignment.

목차

▶TABLE of CONTENTS
⦁Chapter 1: Preparing Your Environment
⦁Chapter 2: Quantum Computing and Qubits with Python
⦁Chapter 3: IBM Quantum Experience® – Quantum Drag and Drop
⦁Chapter 4: Starting at the Ground Level with Terra
⦁Chapter 5: Touring the IBM Quantum® Hardware with Qiskit®
⦁Chapter 6: Understanding the Qiskit® Gate Library
⦁Chapter 7: Simulating Quantum Computers with Aer
⦁Chapter 8: Cleaning Up Your Quantum Act with Ignis
⦁Chapter 9: Grover's Search Algorithm
⦁Chapter 10: Getting to Know Algorithms with Aqua


리뷰

구매자 별점

0.0

점수비율
  • 5
  • 4
  • 3
  • 2
  • 1

0명이 평가함

리뷰 작성 영역

이 책을 평가해주세요!

내가 남긴 별점 0.0

별로예요

그저 그래요

보통이에요

좋아요

최고예요

별점 취소

구매자 표시 기준은 무엇인가요?

'구매자' 표시는 리디에서 유료도서 결제 후 다운로드 하시거나 리디셀렉트 도서를 다운로드하신 경우에만 표시됩니다.

무료 도서 (프로모션 등으로 무료로 전환된 도서 포함)
'구매자'로 표시되지 않습니다.
시리즈 도서 내 무료 도서
'구매자’로 표시되지 않습니다. 하지만 같은 시리즈의 유료 도서를 결제한 뒤 리뷰를 수정하거나 재등록하면 '구매자'로 표시됩니다.
영구 삭제
도서를 영구 삭제해도 ‘구매자’ 표시는 남아있습니다.
결제 취소
‘구매자’ 표시가 자동으로 사라집니다.

이 책과 함께 구매한 책


이 책과 함께 둘러본 책



본문 끝 최상단으로 돌아가기

spinner
모바일 버전