You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solution for indeterminate forms using interval numbers
by Norbert Nopper
Credits
Thanks to Eric Lengyel for asking the initial right questions.
Thanks a lot, to my family and their patience having me as a 🤓.
Thanks to 🤖, for cross checking the math, wording and implementation.
Note
The math formulas are encoded using MathJax.
If the rendering of the math formuls are not properly done, please use another editor/viewer like Visual Studio Code.
Motivation
The expressions $0 \cdot ∞$ and implicitly $0 \cdot -∞$ are indeterminate forms [1]. It is not possible to perform algebraic operations on these expressions like $-1 \cdot (0 \cdot -∞)$.
However, compared to $x = -1 \cdot -x$, intuitively the following equation should be true:
$$0 \cdot ∞ = -1 \cdot (0 \cdot -∞)$$
Problem
A naive approach like $-1 \cdot (0 \cdot -∞) = (-1 \cdot 0) \cdot -∞$ with mathematical limits results again in $0 \cdot -∞$ even when the associative law is allowed.
Investigation
Existing required mathematical limits for the above assumption:
The result is again 0 and does not provide the expected result.
New interval number
Assumption
In the case of the given two indeterminate forms, the result could be any number. However, the resulting number can be enclosed in an interval.
Using extended real numbers
Using the extended real number system $\overline {\mathbb R}$ [2, 3], the intervals $[0, ∞]$ and $[-∞, 0]$ are allowed.
Definition
Since an indeterminate form can evaluate to any value within a specific range, we introduce the interval number in to represent all possible values in that range:
$[x_0, x_1]in := { x \in \overline {\mathbb R} \mid x_0 \le x \le x_1 }$
Sign convention (for limits)
In the following, $\infty$ means positive infinity. Negative infinity is written as $-\infty$.
The indeterminate form of $0 \cdot \infty$ can be expressed as the first rule:
Rule I $0 \cdot \infty = [0, \infty]in$
Similarly, the expression for the indeterminate form of $0 \cdot (-\infty)$ is the second rule:
Rule II $0 \cdot (-\infty) = [-\infty, 0]in$
Deduction
Operation or rule
$-1 \cdot (0 \cdot (-\infty))$
Rule II
$-1 \cdot [-\infty, 0]in$
Multiplication for interval number
$[-1 \cdot (-\infty), -1 \cdot 0]in$
Operation in $\overline {\mathbb R}$
$[0, \infty]in$
Rule I
$0 \cdot \infty$
Regarding the algebraic structure [4], only the required multiplication for the given rules is investigated.
The algebraic structure of the interval numbers is at least a Magma [5], as all multiplications in $\overline {\mathbb R}$ including Rule I and Rule II are defined.
Interval number operations
These are the given mathematical operations, following standard interval arithmetic [6].
Some equations from indeterminate forms resulting back in a non-indeterminate form
$|\frac{0}{0}|+ ∞ = ∞$
Because:
$\frac{0}{0} = [-∞, ∞]in$
$|-∞, ∞|in = [0, ∞]in$
$[0, ∞]in + ∞ = [0 + ∞, ∞ + ∞] = [∞, ∞]in = ∞$
$(\frac{∞}{∞}) + ∞ = ∞$
Because:
$\frac{∞}{∞} = [0, ∞]in$
$[0, ∞]in + ∞ = [0 + ∞, ∞ + ∞] = [∞, ∞]in = ∞$
Conclusion
Using this approach, other indeterminate forms could be expressed as intervals and solved in equations as well. Especially the usage and current definition in measure theory should be further evaluated [7].
For now, it is shown that the algebraic structure of the interval number is a Magma. However, including the other mathematical operations, the algebraic structure could be further investigated.
Furthermore, other intervals for indeterminate forms could be estimated and defined.