Skip to content

Commit

Permalink
Change in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Agustin committed Aug 22, 2023
1 parent 9031196 commit 02e851f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,15 @@ Throughout this section and the following we will use this example extensively t
Let's say our computation consists of calculating the `k`-th number in the fibonacci sequence. This is just the sequence of numbers $`a_n`$ satisfying
```math
a_0 = 1 \\
a_1 = 1 \\
a_{n+2} = a_{n + 1} + a_n \\
a_0 = 1
```

```math
a_1 = 1
```

```math
a_{n+2} = a_{n + 1} + a_n
```

An execution trace for this just consists of a table with one column, where each row is the `i`-th number in the sequence:
Expand Down

0 comments on commit 02e851f

Please sign in to comment.