Search code examples
solvernonlinear-functionsmath.net

How to solve non-linear equation iteratively (using Math.NET Numerics)


I have a specific non-linear equation of type:

a(1+cos(b))^2 = 4x * exp(-2c*(a-x)^2) 

Can Math.NET Numerics solve this equation iteratively to get x when a,b and c are given?

The Documentation only talks about linear equations.

Thanks in advance.


Solution

  • Remember you can always put everything to the right hand side of this equation and find the root. Even if it's a bissection. It'll only take more time to solve.