-
Notifications
You must be signed in to change notification settings - Fork 0
Sphere
The Sphere function is a commonly used benchmark for testing optimization algorithms. It is defined mathematically as:
Where Sphere.dimensionality) with a default value of 2. The
Here is a link to a Desmos version I created : https://www.desmos.com/3d/wnvkpux9oy
- Unimodality: The function has a single global minimum, making it very easier for optimization algorithms to find the optimal solution.
-
Global minimum: The global minimum is located at
$f(x^{*}=<0,...,0>)=0$ . -
Search space: Typically, the function is evaluated over a bounded region, often
$[-\infty, \infty]$ for each dimension. - Smoothness: The function is smooth and differentiable, which is advantageous for gradient-based optimization methods.
The Sphere function is a well-known mathematical function used in optimization literature. More information can be found in relevant optimization textbooks and research papers.