Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor beauty/consistensy fixes #111

Merged
merged 6 commits into from
Dec 5, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/basics/NonlinearProblem.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

## The Three Types of Nonlinear Problems

NonlinearSolve.jl tackles two related types of nonlinear systems:
NonlinearSolve.jl tackles three related types of nonlinear systems:

1. Interval rootfinding problems. I.e., find the ``t in [t_0, t_f]`` such that `f(t) = 0`.
1. Interval rootfinding problems. I.e., find the ``t \in [t_0, t_f]`` such that `f(t) = 0`.
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
2. Systems of nonlinear equations, i.e. find the `u` such that `f(u) = 0`.
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
3. Steady state problems, i.e. find the `u` such that `u' = f(u,t)` has reached steady state,
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
i.e. `0 = f(u, ∞)`.
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
Expand Down