Linear Integral¶
- linear_integral(first_constant, second_constant, precision=4)¶
Generates the integral of a linear function
- Parameters
first_constant (int or float) – Coefficient of the linear term of the original linear function; if zero, it will be converted to a small, non-zero decimal value (e.g., 0.0001)
second_constant (int or float) – Coefficient of the constant term of the original linear function; if zero, it will be converted to a small, non-zero decimal value (e.g., 0.0001)
precision (int, default=4) – Maximum number of digits that can appear after the decimal place of the resultant roots
- Raises
TypeError – First two arguments must be integers or floats
ValueError – Last argument must be a positive integer
- Returns
integral[‘constants’] (list of float) – Coefficients of the resultant integral
integral[‘evaluation’] (func) – Function for evaluating the resultant integral at any float or integer argument
Notes
Standard form of a linear function: \(f(x) = a\cdot{x} + b\)
Integral of a linear function: \(F(x) = \frac{a}{2}\cdot{x^2} + b\cdot{x}\)
Examples
- Import linear_integral function from regressions library
>>> from regressions.analyses.integrals.linear import linear_integral
- Generate the integral of a linear function with coefficients 2 and 3, then display its coefficients
>>> integral_constants = linear_integral(2, 3) >>> print(integral_constants['constants']) [1.0, 3.0]
- Generate the integral of a linear function with coefficients -2 and 3, then evaluate its integral at 10
>>> integral_evaluation = linear_integral(-2, 3) >>> print(integral_evaluation['evaluation'](10)) -70.0
- Generate the integral of a linear function with all inputs set to 0, then display its coefficients
>>> integral_zeroes = linear_integral(0, 0) >>> print(integral_zeroes['constants']) [0.0001, 0.0001]