-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathsolnQCQI.tex
110 lines (85 loc) · 3.58 KB
/
solnQCQI.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
%
% generate PDF file
% pdflatex solnQCQI.tex
%
\documentclass[11pt]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath,amsfonts,amssymb,amsthm}
\usepackage[width=16.00cm, height=24.00cm]{geometry}
\usepackage[dvipdfmx]{graphicx}
\usepackage[english]{babel}
%図の場所をなるべく指定した場所にする
\usepackage{booktabs}
\usepackage{here}
\RequirePackage[l2tabu, orthodox]{nag}
\usepackage[all, warning]{onlyamsmath}
%単位を書くときに使う
\usepackage{siunitx}
\usepackage{CJKutf8}
\usepackage{ascmac} % screen
\usepackage{ulem}
\usepackage{cases}
\usepackage{braket}
\usepackage{dsfont}
\usepackage{ascmac}
\usepackage{url}
\usepackage{hyperref} % hyper link
\usepackage{ccicons} % creative commons license icon
\usepackage{fancyhdr} % footer
%\pagestyle{fancy}
%\cfoot[\href{http://creativecommons.org/licenses/by-nc-sa/4.0/}{Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License}.]{}
\usepackage{color}
\usepackage{fancyhdr}
\setlength{\headheight}{15.2pt}
\pagestyle{fancy}
\lhead[\leftmark ]{\thepage}
\rhead[\thepage]{\leftmark}
\cfoot{\footnotesize \textcopyright 2018 goropikari - \href{http://creativecommons.org/licenses/by-nc-sa/4.0/}{Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License}}
% コマンド定義
\DeclareMathOperator{\Tr}{Tr}
\newcommand{\norm}[1]{\left\lVert#1\right\rVert} % norm ||x||
\newcommand{\kb}[1]{\ket{#1}\hspace{-1mm} \bra{#1}} % |x><x|
\newcommand{\kbt}[2]{\ket{#1}\hspace{-1mm} \bra{#2}} % |x><y|
\newcommand{\Textbf}[1]{\hspace{3mm}\\ \textbf{#1}\\}
\newtheorem{thm}{Theorem.}[section]
\newtheorem{prop}{Proposition.}[section]
\title{Solution for "Quantum Computation and Quantum Information: 10th Anniversary Edition" by Nielsen and Chuang}
\author{goropikari}
\date{\today}
\begin{document}
\maketitle
\thispagestyle{empty}
\setcounter{page}{0} % 表紙のページを0ページにする
\section*{Copylight Notice:}
\ccbyncsa\\
This work is licensed under a \href{http://creativecommons.org/licenses/by-nc-sa/4.0/}{Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License}.
\section*{Repository}
The latest version and source \LaTeX code are located in\\ \url{https://github.com/goropikari/SolutionForQuantumComputationAndQuantumInformation}.
\section*{For readers}
This is an unofficial solution manual for "\href{http://www.cambridge.org/jp/academic/subjects/physics/quantum-physics-quantum-information-and-quantum-computation/quantum-computation-and-quantum-information-10th-anniversary-edition?format=HB&isbn=9781107002173#BBFv83H3ofgcgG3A.97}{Quantum Computation and Quantum Information: 10th Anniversary Edition}" (ISBN-13: 978-1107002173) by Michael A. Nielsen and Isaac L. Chuang.
I have studied quantum information theory as a hobby.
And I'm not a researcher.
So there is no guarantee that these solutions are correct.
Especially because I'm not good at mathematics, proofs are often wrong.
Don't trust me. Verify yourself!
If you find some mistake or have some comments, please feel free to open an issue or a PR.
\begin{flushright}
\href{https://github.com/goropikari}{goropikari}
\end{flushright}
\tableofcontents
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
\include{chapter/errata}
\mainmatter
\input{chapter/chapter2}
\setcounter{chapter}{7}
\input{chapter/chapter8}
\input{chapter/chapter9}
\setcounter{chapter}{10}
\input{chapter/chapter11}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%参考文献
%\bibliographystyle{jplain}
%\bibliography{ref} % ref.bib を読み込み
\end{document}