Skip to content

Commit f36a1f4

Browse files
authored
Update first_optimization.md
Corrected the Rosenbrock equation as:: ```math L(u,p) = (p_1 - u_1)^2 + p_2 * (u_2 - u_1^2)^2 ```
1 parent a560d10 commit f36a1f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/getting_started/first_optimization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The following parts of the SciML Ecosystem will be used in this tutorial:
2626
First, what are we solving? Let's take a look at the Rosenbrock equation:
2727

2828
```math
29-
L(u,p) = (p_1 - u_1)^2 + p_2 * (u_2 - u_1)^2
29+
L(u,p) = (p_1 - u_1)^2 + p_2 * (u_2 - u_1^2)^2
3030
```
3131

3232
What we want to do is find the values of ``u_1`` and ``u_2`` such that ``L``

0 commit comments

Comments
 (0)