To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1

z

👀 Reading hidden code
md"$z$"
129 μs

a b

👀 Reading hidden code
md"a
$\require{physics}$
b"
182 μs

The Basel problem

Leonard Euler proved x in 1741 that the series

11+14+19+

converges to

O(R)xπ26

👀 Reading hidden code
md"# The Basel problem

_Leonard Euler_ proved $x$ in 1741 that the series

$$\frac{1}{1} + \frac{1}{4} + \frac{1}{9} + \cdots$$

converges to

$$\order{R}{x} \frac{\pi^2}{6}$$"
303 μs
3.1415831043264424
👀 Reading hidden code
sqrt(sum(seq) * 6.0)
71.3 μs
1:100000
👀 Reading hidden code
n = 1:100000
15.3 μs
seq = n .^ -2
👀 Reading hidden code
59.5 ms

👀 Reading hidden code
67.2 μs