Applied ideas on using Bezier curves & hybrid tetrations to approximate & fit curves in data. Authored by Onri Jay Benally.
Bezier curves, being the useful geometric tools that they are, can be described by a Bernstein basis polynomial. They can be modified to follow objects that bend using hidden control handles and anchor points placed on an existing curve of interest. With that in mind, I thought of the introducing the polynomial for the Bezier curve with a tetration to form a hybrid approach which may compensate for very sharp and large changes in curve data as well. Some interesting results are provided in this repository. Check files for the code provided in a Google Colab notebook.
Concept | Equation / Explanation |
---|---|
General Bézier Curve | |
Bernstein Basis Polynomial | |
Binomial Coefficient | |
Curve Properties | - - - The curve starts at - The shape is controlled by the intermediate points |
Linear Bézier Curve ( |
Straight line between two points. |
Quadratic Bézier Curve ( |
|
Cubic Bézier Curve ( |
|
Applications | Cubic Bézier curves are commonly used in computer graphics and font design. |
Term | Definition |
---|---|
Anchor Point | A point that lies directly on the Bézier curve and determines its start and end positions. For example, in a cubic Bézier curve, the first and last points are anchor points. |
Control Point | A point that influences the curve's shape but does not necessarily lie on the curve itself. These act as "handles" that pull the curve towards them, affecting its direction and curvature. |
Aspect | Anchor Point | Control Point |
---|---|---|
Definition | A point that lies on the curve and marks its start or end. | A point that influences the curve's shape but does not necessarily lie on it. |
Function | Defines the endpoints of the curve (or intermediate points in composite curves). | Determines the direction and curvature of the curve. |
Presence in Quadratic Bézier Curve | 2 anchor points | 1 control point |
Presence in Cubic Bézier Curve | 2 anchor points | 2 control points |
Higher-Degree Bézier Curves | Typically 2 anchor points (unless part of a composite curve). | The number of control points is one more than the curve’s degree. |
Component | Details |
---|---|
Curve Definition | A Bézier curve with 6 anchor points is a fifth-degree (quintic) Bézier curve because the number of control points ( |
Control Points | |
Parametric Equation | |
Bernstein Polynomial | |
Binomial Coefficient | |
Expanded Equation | |
Parameter Range |
Concept | Equation / Explanation |
---|---|
Polynomial Definition | A polynomial consists of a series of terms involving powers of a variable, typically expressed as: where the exponents are added sequentially. |
Tetration Definition | Tetration is a form of repeated exponentiation, written as: where the exponentiation stacks instead of adding. |
Comparison to a Series | - A series consists of a sum of terms. - A polynomial is a finite sum of powers of - Exponentiation is an iterative multiplication operation. - Tetration is an iterative exponentiation operation. |
Growth Difference | Unlike a polynomial, a tetration does not consist of a sum of terms; instead, it is an iterated power tower, which grows much faster. |
Can Tetration Be Expressed as a Series? | Tetration does not naturally expand into a power series like a polynomial. However, in some cases, it can be approximated using: - Logarithmic expansions (breaking it down via - Power series representations (like Taylor series) for small values. But in general, tetration does not behave like a polynomial series because it is based on hierarchical exponentiation rather than summation. |
Concept | Equation / Explanation |
---|---|
Hybrid Polynomial-Tetration Possibility | A polynomial power series can be appended or modified as a hybrid with tetration, depending on how the two mathematical structures are combined. |
1. Direct Summation (Appending a Tetration Term) | A tetration term is added to a polynomial power series: where: - - - Blends polynomial growth with tetration's extreme growth. |
2. Recursive Hybridization (Tetration Within a Polynomial) | Instead of adding tetration separately, we embed it into the polynomial: Amplifies the polynomial’s growth through tetration. |
3. Series Expansion Involving Tetration (Power Series Approximation) | For small This allows for: where |
4. Logarithmic Transformation (Taming Tetration Growth) | To prevent tetration from dominating a polynomial, we introduce logarithmic damping: Controls tetration's rapid growth by applying a logarithm. |
Challenges of Hybridizing a Polynomial with Tetration | 1. Growth Rate Disparity: Tetration grows much faster than polynomial terms. Scaling is necessary. 2. Analytic Continuation Issues: Tetration is not always well-defined for non-integer heights, requiring super-exponential extensions. 3. Computational Stability: Tetration grows hyper-exponentially, which can cause numerical instability. |
Conclusion | A hybrid polynomial-tetration function is possible with different formulations depending on the desired properties: - Controlled growth: Use logarithmic damping or power series approximations. - Ultra-fast growth: Use direct summation or embed tetration inside a polynomial. |