From 2a42137d74f5557ef488b6c5c4832f969e8bb505 Mon Sep 17 00:00:00 2001 From: sophie006liu <41531009+sophie006liu@users.noreply.github.com> Date: Fri, 10 Jun 2022 10:46:25 -0400 Subject: [PATCH] Update 04.01-Basic-Folding-Algorithm.ipynb Fixed typo in step 3: accepting/rejection move --- student-notebooks/04.01-Basic-Folding-Algorithm.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/student-notebooks/04.01-Basic-Folding-Algorithm.ipynb b/student-notebooks/04.01-Basic-Folding-Algorithm.ipynb index 67a9619..1a2a2b2 100755 --- a/student-notebooks/04.01-Basic-Folding-Algorithm.ipynb +++ b/student-notebooks/04.01-Basic-Folding-Algorithm.ipynb @@ -260,7 +260,7 @@ "metadata": {}, "source": [ "### Step 3: Accepting/Rejecting Move\n", - "For the **decision** step, we need to make a subroutine that either accepts or rejects the new conformatuon based on the Metropolis criterion. The Metropolis criterion has a probability of accepting a move as $P = \\exp( -\\Delta G / kT )$. When $ΔE ≥ 0$, the Metropolis criterion probability of accepting the move is $P = \\exp( -\\Delta G / kT )$. When $ΔE < 0$, the Metropolis criterion probability of accepting the move is $P = 1$. Use $kT = 1$ Rosetta Energy Unit (REU)." + "For the **decision** step, we need to make a subroutine that either accepts or rejects the new conformation based on the Metropolis criterion. The Metropolis criterion has a probability of accepting a move as $P = \\exp( -\\Delta G / kT )$. When $ΔE ≥ 0$, the Metropolis criterion probability of accepting the move is $P = \\exp( -\\Delta G / kT )$. When $ΔE < 0$, the Metropolis criterion probability of accepting the move is $P = 1$. Use $kT = 1$ Rosetta Energy Unit (REU)." ] }, {