Skip to content

Commit 9aaf0e2

Browse files
committed
Improve spelling.
1 parent 24d2698 commit 9aaf0e2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

contents/monte_carlo_integration/monte_carlo_integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ If we use a small number of points, this will only give us a rough approximation
7777
<img class="center" src="res/monte_carlo.gif" width="400"/>
7878
</p>
7979

80-
The true power of monte carlo comes from the fact that it can be used to integrate literally any object that can be embedded into the square.
81-
As long as you can write some function to tell whether the provided point is inside the shape you want (like `in_circle()` in this case), you can use monte carlo integration!
80+
The true power of Monte Carlo comes from the fact that it can be used to integrate literally any object that can be embedded into the square.
81+
As long as you can write some function to tell whether the provided point is inside the shape you want (like `in_circle()` in this case), you can use Monte Carlo integration!
8282
This is obviously an incredibly powerful tool and has been used time and time again for many different areas of physics and engineering.
8383
I can guarantee that we will see similar methods crop up all over the place in the future!
8484

8585
## Example Code
86-
Monte carlo methods are famous for their simplicity.
86+
Monte Carlo methods are famous for their simplicity.
8787
It doesn't take too many lines to get something simple going.
8888
Here, we are just integrating a circle, like we described above; however, there is a small twist and trick.
8989
Instead of calculating the area of the circle, we are instead trying to find the value of $$\pi$$, and

contents/quantum_systems/quantum_systems.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ $$
3838
$$
3939

4040
where $$D$$ is some positive definite matrix and $$\phi(\mathbf{r},t)$$ is the density (or temperature) of the system.
41-
In fact, this is why one of the most common types of quantum simulation is sometimes called _diffusion monte carlo_.
41+
In fact, this is why one of the most common types of quantum simulation is sometimes called _diffusion Monte Carlo_.
4242
There really isn't that much of a difference between the two systems in terms of how they are simulated on classical hardware... but we are getting ahead of ourselves.
4343
For now, let's talk about how quantum mechanics differs from classical mechanics and how we can use this to our advantage.
4444

@@ -87,7 +87,7 @@ Simply put, the Heisenberg uncertainty principle states that we cannot definitel
8787
In particular, it says:
8888

8989
$$
90-
\sigma_x \sigma_p \geq \frac{\hbar}{2}
90+
\sigma_x \sigma_p \geq \frac{\hbar}{2}
9191
$$
9292

9393
where $$\hbar$$ is Planck's constant and $$\sigma_q = \sqrt{\frac{1}{N}\sum_{i=1}^{N}(q_i-\mu)^2}$$.
@@ -187,7 +187,7 @@ $$
187187
$$
188188

189189
and basically describes $$A$$ as a column vector.
190-
The _bra_ represents the Hermitian conjucate of the ket and looks like this:
190+
The _bra_ represents the Hermitian conjugate of the ket and looks like this:
191191

192192
$$
193193
\langle B \rvert
@@ -201,7 +201,7 @@ For example, if we want to indicate the probability of a wavefunction $$\psi$$ c
201201
Now that we have a basic understanding of the notation, we should go through several other important quantum mechanical ideas and properties.
202202

203203
## Eigenstates
204-
As mentioned, the wavefunction $$\Psi(x)$$ is complex and has both real and imaginary parts; however, there are certain states that are eclusively real.
204+
As mentioned, the wavefunction $$\Psi(x)$$ is complex and has both real and imaginary parts; however, there are certain states that are exclusively real.
205205
These states are _eigenstates_ of the system, and are often described as the constituent states that make up all other possible wavefunctions.
206206
In other words,
207207

@@ -236,7 +236,7 @@ In the end, many quantum simulations are focused on the _ground_ state, which is
236236

237237
As we proceed to add new algorithms to simulate quantum systems, I will add more and more notation to this section; however, there are already huge textbooks out there related to understanding and studying quantum systems.
238238
We don't want to re-invent the wheel here.
239-
Instead, we want to focus on an area that is often not considered with too much detail: algorithms and methods researchers use to ascertain new knowedge about quantum mechanics, like the split-operator method, DMRG, quantum monte carlo, exact diagonalization, and many more.
239+
Instead, we want to focus on an area that is often not considered with too much detail: algorithms and methods researchers use to ascertain new knowledge about quantum mechanics, like the split-operator method, DMRG, quantum Monte Carlo, exact diagonalization, and many more.
240240

241241
Quantum mechanics is one of those areas of physics that really does push the boundary of human knowledge in a number of different areas and computing is one of those areas.
242242
In fact, [quantum information theory](../quantum_information/quantum_information.md) is currently set to be the next innovation to radically change the landscape of modern computation as we know it!

0 commit comments

Comments
 (0)