Skip to content

Commit 88270a8

Browse files
author
Scinawa
committed
Add JB as contributor, refactor structure of part of books
1 parent 738895a commit 88270a8

3 files changed

Lines changed: 18 additions & 7 deletions

File tree

appendix.Rmd

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ output:
44
html_document: default
55
---
66

7+
# (PART) Part (appendix) {-}
78

89
# (APPENDIX) Appendix {-}
910

@@ -112,13 +113,13 @@ Bound $\|A^TA - \overline{A}^T\overline{A}\|_F$
112113

113114

114115

115-
```{definition, name="Distance"}
116+
```{definition, distance, name="Distance"}
116117
A function $f : \mathbb{R}^d \times \mathbb{R}^d \mapsto \mathbb{R}$ is called a distance if:
117118
118119
- $d(x,y) \geq 0$
119120
- $d(x,y) = 0$ iif $x=y$
120121
- $d(x,y)=d(y,x)$
121-
- $d(x,z) \leq d(x,y) + d(x,y+z)$
122+
- $d(x,z) \leq d(x,y) + d(y,z)$
122123
123124
```
124125

@@ -380,8 +381,8 @@ Another interesting result about the SVD of a matrix is known as the Eckart–Yo
380381
```{theorem, eckart-young-mirsky, name="Best F-Norm Low Rank Approximation"}
381382
\cite{eckart1936approximation}\cite{mirsky1960symmetric} \label{Theo:eckart-young-mirsky}
382383
Let $A \in \mathbb{R}^{n \times m}$ be a matrix of rank $r$ and singular value decomposition $A = U \Sigma V ^T$. The matrix $A ^{(k)} = U ^{(k)}\Sigma ^{(k)}V ^{(k)T}$ of rank $k \leq r$, obtained by zeroing the smallest $r-k$ singular values of $A$, is the best rank-k approximation of $A$.
383-
Equivalently, $A _k = argmin_{B :rank(B )=k}(||A - B ||_F)$.
384-
Furthermore, $min_{B :rank(B )=k}(||A - B ||_F) = \sqrt{\sum_{i=k+1}^r{\sigma_i}}$.
384+
Equivalently, $A _k = argmin_{B :rank(B )=k}(\|A - B \|_F)$.
385+
Furthermore, $min_{B :rank(B )=k}(\|A - B \|_F) = \sqrt{\sum_{i=k+1}^r{\sigma_i}}$.
385386
```
386387

387388

@@ -1198,15 +1199,20 @@ If you want to give me any feedback, feel free to write me at "scinawa - at - lu
11981199
In sparse order, I would like to thank [Dong Ping Zhang](www.dongpingzhang.com), [Mehdi Mhalla](http://membres-lig.imag.fr/mhalla/) , [Simon Perdrix](https://members.loria.fr/SPerdrix/), [Tommaso Fontana](https://twitter.com/zommiommy), and [Nicola](https://www.linkedin.com/in/nvitucci/) [Vitucci](https://twitter.com/nvitucci) for the initial help with the previous version of this project, and the helpful words of encouragement.
11991200

12001201

1201-
The [contributors](https://github.com/Scinawa/quantumalgorithms.org/graphs/contributors) to the project are:
1202+
1203+
**Core team**
12021204

12031205
- Alessandro ['Scinawa'](https://twitter.com/scinawa) Luongo
12041206
- Armando ['ikiga1'](https://twitter.com/ikiga1) Bellante
1207+
1208+
The [contributors](https://github.com/Scinawa/quantumalgorithms.org/graphs/contributors) to the project are:
1209+
12051210
- Patrick Rebentrost
12061211
- Yassine Hamoudi
12071212
- Martin Plávala
12081213
- Trong Duong
12091214
- Filippo Miatto
1215+
- Jinge Bao
12101216

12111217
# License and citation
12121218

index.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Quantum algorithms for data analysis"
3-
author: ""
3+
author: "Alessandro Luongo"
44
date: "`r Sys.Date()`"
55
site: bookdown::bookdown_site
66
documentclass: book
@@ -117,7 +117,7 @@ https://stackoverflow.com/questions/41084020/add-a-html-block-above-each-chapter
117117
- March 2021: quantumalgorithms.org is proudly supported by the [Unitary Fund](https://unitary.fund/), and quantumalgorithms.org is a project of the [QOSF](https://qosf.org) mentorship program: 5 students started creating new content!
118118
- April 2021: Mobile version working, search functionality added, q-means, finding the minimum, new algo for dimensionality reduction, and factor score ratio estimation estimation.
119119

120-
Arriving soon:
120+
Coming soon:
121121

122122
- quantum perceptrons
123123
- quantum lower bounds

toolbox.Rmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ We now want to show an algorithm that finds the minimum among $N$ unsorted value
1515
Given quantum access to a vector $u \in [0,1]^N$ via the operation $\ket j \ket{\bar 0} \to \ket j \ket{ u_j}$ on $\Ord{\log N}$ qubits, where $u_j$ is encoded to additive accuracy $\Ord{1/N}$. Then, we can find the minimum $u_{\min} = \min_{j\in[N]} u_j$ with success probability $1-\delta$ with $\Ord{\sqrt N \log \left (\frac{1}{\delta}\right) }$ queries and $\tOrd{\sqrt N \log \left( \frac{1}{\delta}\right )}$ quantum gates.
1616
```
1717

18+
Another formulation is the following:
19+
```{theorem, finding-minimum-2, name="Quantum Minimum Finding [@durr1996quantum] formulation of [@ambainis2019quantum]"}
20+
Let $a_1, \ldots, a_n$ be integers, accessed by a procedure $\mathcal P$.
21+
There exists a quantum algorithm that finds $\min_{i=1}^n \{a_i\}$ with success probability at least $2/3$ using $O(\sqrt n)$ applications of $\mathcal P$.
22+
```
1823

1924

2025

0 commit comments

Comments
 (0)