Skip to content

Commit

Permalink
fixing latex line break issue on line ~404 and the following section
Browse files Browse the repository at this point in the history
  • Loading branch information
zackchase committed Mar 12, 2019
1 parent 691ac52 commit 21a2155
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions chapter_crashcourse/probability.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,12 +410,7 @@ These numbers likely *appear* random. Note that their
range is between 0 and 1 and they are evenly distributed. Because these numbers
are generated by default from the uniform distribution, there should be no two
sub-intervals of $[0,1]$ of equal size where numbers are more likely to lie in
one interval than the other. In other words, the chances of any of these numbers
to fall into the interval $[0.2,0.3)$ are the same as in the interval $[.593264,
.693264)$. In fact, these numbers are pseudo-random, and the computer generates
them by first producing a random integer and then dividing it by its maximum
range. To sample random integers directly, we can run the following snippet,
which generates integers in the range between 1 and 100.
one interval than the other. In other words, the chances of any of these numbers to fall into the interval $[0.2,0.3)$ are the same as in the interval $[.593264, .693264)$. In fact, these numbers are pseudo-random, and the computer generates them by first producing a random integer and then dividing it by its maximum range. To sample random integers directly, we can run the following snippet, which generates integers in the range between 1 and 100.

```{.python .input}
for i in range(10):
Expand Down

0 comments on commit 21a2155

Please sign in to comment.