Compute Engine
module compute-engineClasses
interface BoxedBaseDefinition Permalink
Extended by BoxedSymbolDefinition
interface BoxedBaseDefinitionProperties / Methods
interface BoxedBaseDefinitiondescription Permalink
- | string
- | string[]
interface BoxedBaseDefinitionname: string Permalink
interface BoxedBaseDefinitionreset() Permalink
When the environment changes, for example the numerical precision,
call reset()
so that any cached values can be recalculated.
interface BoxedBaseDefinitionscope: undefined | RuntimeScope Permalink
The scope this definition belongs to.
This field is usually undefined, but its value is set by getDefinition()
interface BoxedBaseDefinitionurl: string Permalink
interface BoxedBaseDefinitionwikidata: string Permalink
interface BoxedDomain Permalink
Extends BoxedExpression
interface BoxedDomainProperties / Methods
Dictionary Expression
Domain Properties
Expression Properties
Function Expression
Numeric Expression
String Expression
Symbol Expression
Other
Primitive Methods
Relational Operator
Dictionary Expression
Domain Properties
Expression Properties
Function Expression
Numeric Expression
String Expression
Symbol Expression
Other
interface BoxedDomainis() Permalink
From Object.is()
. Equivalent to BoxedExpression.isSame()
interface BoxedDomainisCompatible() Permalink
True if a valid domain, and compatible with dom
interface BoxedDomainisFunction: boolean Permalink
interface BoxedDomainisNothing: boolean Permalink
If this is the Nothing
symbol, return true
.
Note applicable to canonical and non-canonical expressions.
interface BoxedDomainisNumeric: boolean Permalink
interface BoxedDomainisRelationalOperator: boolean Permalink
The function represent a relation between the first argument and the second argument, and evaluates to a boolean indicating if the relation is satisfied.
For example, Equal
, Less
, Approx
, etc…
Default: false
interface BoxedDomaincanonical: BoxedDomain read only Permalink
interface BoxedDomaincodomain: null | BoxedDomain read only Permalink
interface BoxedDomainctor: null | DomainConstructor read only Permalink
interface BoxedDomaindomainArg1: null | BoxedExpression | DomainExpression<BoxedExpression> read only Permalink
interface BoxedDomaindomainArgs: null | (BoxedExpression | DomainExpression<BoxedExpression>)[] read only Permalink
interface BoxedDomainjson: Expression read only Permalink
interface BoxedDomainliteral: null | string read only Permalink
Primitive Methods
Relational Operator
interface BoxedExpression Permalink
Extended by BoxedDomain, Pattern
Theory of Operations
The BoxedExpression
interface includes most of the member functions
applicable to any kind of expression, for example get symbol()
or
get ops()
.
When a member function is not applicable to this BoxedExpression
,
for example get symbol()
on a BoxedNumber
, it returns null
.
This convention makes it convenient to manipulate expressions without having to check what kind of instance they are before manipulating them.
interface BoxedExpressionProperties / Methods
Dictionary Expression
Domain Properties
Expression Properties
Function Expression
Numeric Expression
String Expression
Symbol Expression
Other
Primitive Methods
Relational Operator
Dictionary Expression
interface BoxedExpressiongetKey() Permalink
If this expression is a dictionary, return the value of the key
entry.
interface BoxedExpressionhasKey() Permalink
If this expression is a dictionary, return true if the
dictionary has a key
entry.
interface BoxedExpressionkeys Permalink
- | null
- | IterableIterator<string>
The keys of the dictionary.
If this expression not a dictionary, return null
interface BoxedExpressionkeysCount: number Permalink
Domain Properties
interface BoxedExpressionisAlgebraic: undefined | boolean Permalink
The value of this expression is a number that is the root of a non-zero univariate polynomial with rational coefficients.
All integers and rational numbers are algebraic.
Transcendental numbers, such as \( \pi \) or \( e \) are not algebraic.
interface BoxedExpressionisComplex: undefined | boolean Permalink
The value of this expression is a number, but not NaN
or any Infinity
isReal || isImaginary
interface BoxedExpressionisExtendedComplex: undefined | boolean Permalink
isReal || isImaginary || isInfinity
interface BoxedExpressionisExtendedReal: undefined | boolean Permalink
Real or ±Infinity
isReal || isInfinity
interface BoxedExpressionisImaginary: undefined | boolean Permalink
The value of this expression is a number with a imaginary part
interface BoxedExpressionisInteger: undefined | boolean Permalink
The value of this expression is an element of the set ℤ: …,-2, -1, 0, 1, 2…
interface BoxedExpressionisNumber: undefined | boolean Permalink
true
if the value of this expression is a number.
isExtendedComplex || isNaN
= isReal || isImaginary || isInfinity || isNaN
Note that in a fateful twist of cosmic irony, NaN
(“Not a Number”)
is a number.
interface BoxedExpressionisRational: undefined | boolean Permalink
The value of this expression is an element of the set ℚ, p/q with p ∈ ℕ, q ∈ ℤ ⃰ q >= 1
Note that every integer is also a rational.
interface BoxedExpressionisReal: undefined | boolean Permalink
The value of this expression is real number: finite and not imaginary.
isFinite && !isImaginary
Expression Properties
interface BoxedExpressionisComposite: undefined | boolean Permalink
interface BoxedExpressionisEven: undefined | boolean Permalink
interface BoxedExpressionisFinite: undefined | boolean Permalink
This expression is a number, but not ±Infinity and not NaN
interface BoxedExpressionisInfinity: undefined | boolean Permalink
The numeric value of this expression is ±Infinity or Complex Infinity
interface BoxedExpressionisNaN: undefined | boolean Permalink
“Not a Number”.
A value representing undefined result of computations, such as 0/0
,
as per the floating point format standard IEEE-754.
Note that if isNaN
is true, isNumber
is also true (yes, NaN
is a
number).
interface BoxedExpressionisNegative: undefined | boolean Permalink
The numeric value of this expression is < 0, same as isLess(0)
interface BoxedExpressionisNegativeOne: undefined | boolean Permalink
The numeric value of this expression is not -1.
interface BoxedExpressionisNonNegative: undefined | boolean Permalink
The numeric value of this expression is >= 0, same as isGreaterEqual(0)
interface BoxedExpressionisNonPositive: undefined | boolean Permalink
The numeric value of this expression is <= 0, same as isLessEqual(0)
interface BoxedExpressionisNotZero: undefined | boolean Permalink
The numeric value of this expression is not 0.
interface BoxedExpressionisOdd: undefined | boolean Permalink
interface BoxedExpressionisOne: undefined | boolean Permalink
The numeric value of this expression is not 1.
interface BoxedExpressionisPositive: undefined | boolean Permalink
The numeric value of this expression is > 0, same as isGreater(0)
interface BoxedExpressionisPrime: undefined | boolean Permalink
interface BoxedExpressionisZero: undefined | boolean Permalink
The numeric value of this expression is 0.
Function Expression
interface BoxedExpressionnops: number Permalink
If this expression is a function, the number of operands, otherwise 0.
Note that a function can have 0 operands, so to check if this expression
is a function, check if this.ops !== null
instead.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionop1: BoxedExpression Permalink
First operand, i.e.this.ops[0]
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionop2: BoxedExpression Permalink
Second operand, i.e.this.ops[1]
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionop3: BoxedExpression Permalink
Third operand, i.e. this.ops[2]
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionops Permalink
- | null
- | BoxedExpression[]
The list of arguments of the function, its “tail”.
If the expression is not a function, return null
.
Note applicable to canonical and non-canonical expressions.
Numeric Expression
interface BoxedExpressionnumericValue Permalink
- | null
- | number
- | Decimal
- | Complex
- | Rational
Return the value of this expression, if a number literal.
Note it is possible for numericValue
to be null
, and for isNotZero
to be true. For example, when a symbol has been defined with an assumption.
interface BoxedExpressionsgn Permalink
- | undefined
- | null
- | 0
- | 1
- | -1
Return the following, depending on the value of this expression:
-1
if it is < 00
if it is = 0+1
if it is > 0undefined
this value may be positive, negative or zero. We don’t know right now (a symbol with an Integer domain, but no currently assigned value, for example)null
this value will never be positive, negative or zero (NaN
, a string or a complex number for example)
Note that complex numbers have no natural ordering,
so if the value is a complex number, sgn
is either 0, or null
If a symbol, this does take assumptions into account, that is this.sgn
will return 1
if isPositive
is true
, even if this expression has
no value
String Expression
interface BoxedExpressionstring: null | string Permalink
If this expression is a string, return the value of the string.
Otherwise, return null
.
Note applicable to canonical and non-canonical expressions.
Symbol Expression
interface BoxedExpressionisValid: boolean Permalink
true
if this expression or any of its subexpressions is an ["Error"]
expression.
Note applicable to canonical and non-canonical expressions. For non-canonical expression, this may indicate a syntax error while parsing LaTeX. For canonical expression, this may indicate argument domain mismatch, or missing or unexpected arguments.
interface BoxedExpressionsymbol: null | string Permalink
If this expression is a symbol, return the name of the symbol as a string.
Otherwise, return null
.
Note applicable to canonical and non-canonical expressions.
Other
interface BoxedExpressionN() Permalink
Return a numeric approximation of the canonical form of this expression.
Any necessary calculations, including on decimal numbers (non-integers), are performed.
The calculations are performed according to the numericMode
and
precision
properties of the ComputeEngine
.
To only perform exact calculations, use this.evaluate()
instead.
If the function is not numeric, the result of this.N()
is the same as
this.evaluate()
.
The result is in canonical form.
interface BoxedExpressionapply() Permalink
If this expression is a function, apply the function fn
to all its operands.
Replace the head of this expression with head
, if defined.
If this expression is a dictionary, return a new dictionary with the values
modified by fn
.
If head
is provided, return a function expression with the modified
dictionary as operand, otherwise return the modified dictionary.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionbasedDefinition: undefined | BoxedBaseDefinition Permalink
For symbols and functions, a possible definition associated with the
expression. basedDefinition
is the base class of symbol and function
definition.
Note undefined
if not a canonical expression.
interface BoxedExpressioncomplexity: undefined | number Permalink
Expressions with a higher complexity score are sorted first in commutative functions
Note undefined
if not a canonical expression.
interface BoxedExpressiondescription Permalink
- | undefined
- | string[]
An optional short description if the symbol or function head.
May include markdown. Each string is a paragraph.
Note undefined
if not a canonical expression.
interface BoxedExpressionengine: IComputeEngine Permalink
The Compute Engine associated with this expression provides a context in which to interpret it, such as definition of symbols and functions.
interface BoxedExpressionerrors: BoxedExpression[] Permalink
All the ["Error"]
subexpressions
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionevaluate() Permalink
Return the value of the canonical form of this expression.
A pure expression always return the same value and has no side effects.
If expr.isPure
is true
, expr.value
and expr.evaluate()
are
synonyms.
For an impure expression, expr.value
is undefined.
Evaluating an impure expression may have some side effects, for
example modifying the ComputeEngine
environment, such as its set of
assumptions.
Only exact calculations are performed, no approximate calculations on decimal numbers (non-integer numbers). Constants, rational numbers and square root of rational numbers are preserved.
To perform approximate calculations, use expr.N()
instead.
The result of expr.evaluate()
may be the same as expr.simplify()
.
The result is in canonical form.
interface BoxedExpressionexplicitDomain: undefined | BoxedDomain Permalink
The domain of this expression, without accounting for any inferred domain
or ce.defaultDomain
. If no domain has been explicitly set via assignment
or via an .assume()
directive, the expr.explicitDomain
is undefined
.
This is useful to determine if the domain of an expression is inferred.
In most cases you’ll want to use expr.domain
instead.
Note undefined
if not a canonical expression or not a function.
interface BoxedExpressionfreeVars: string[] Permalink
All the free variables in the expression, recursively, that is all the symbols with no value
interface BoxedExpressionfunctionDefinition: undefined | BoxedFunctionDefinition Permalink
For functions, a possible definition associated with the expression.
Note undefined
if not a canonical expression or not a function.
interface BoxedExpressiongetSubexpressions() Permalink
All the subexpressions matching the head
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionhas() Permalink
True if the expression includes a symbol v
or a function head v
.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionhead: string | BoxedExpression Permalink
All boxed expressions have a head.
If not a function this can be Symbol
, String
, Number
or Dictionary
.
If the head expression can be represented as a string, it is returned as a string.
Note applicable to canonical and non-canonical expressions. The head
of a non-canonical expression may be different than the head of its
canonical counterpart. For example the canonical counterpart of ["Divide", 5, 7]
is ["Rational", 5, 5]
.
interface BoxedExpressionisConstant: boolean Permalink
True if the expression is a constant, that is a symbol with an immutable value
interface BoxedExpressionisExact: boolean Permalink
An exact value is not further transformed when evaluated. To get an
approximate evaluation of an exact value, use .N()
.
Non-exact values includes:
- numbers with a fractional part
- complex numbers with a real or imaginary fractional part
interface BoxedExpressionisFree: boolean Permalink
True if the expression is a free variable, that is a symbol with no value
interface BoxedExpressionisNothing: boolean Permalink
If this is the Nothing
symbol, return true
.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionisPure: boolean Permalink
If true, the value of the expression never changes and evaluating it has no side-effects. If false, the value of the expression may change, if the value of other expression changes or for other reasons.
If this.isPure
is false
, this.value
is undefined. Call
this.evaluate()
to determine the value of the expression instead.
As an example, the Random
function is not pure.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionjson: Expression Permalink
MathJSON representation of this expression.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionmatch() Permalink
Attempt to match this expression to the rhs
expression.
If rhs
does not match, return null
.
Otherwise return an object literal.
If this expression includes wildcards (symbols with a name that starts
with _
), the object literal will include a prop for each matching named
wildcard.
If rhs
matches this pattern but there are no named wildcards, return
the empty object literal, {}
.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionreplace() Permalink
Transform the expression by applying the rules:
if the lhs
of a rule matches, it is replaced by its rhs
.
If no rules apply, return null
.
See also subs
for a simple substitution.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionscope: null | RuntimeScope Permalink
The scope in which this expression has been defined. Is null when the expression is not canonical.
interface BoxedExpressionsimplify() Permalink
Return a simpler form of the canonical form of this expression.
A series of rewriting rules are applied repeatedly, until no more rules apply.
If a custom simplify
handler is associated with this function
definition, it is invoked.
The values assigned to symbols and the assumptions about symbols may be
used, for example arg.isInteger
or arg.isPositive
.
No calculations involving decimal numbers (numbers that are not integers) are performed but exact calculations may be performed, for example:
\( \sin(\frac{\pi}{4}) \longrightarrow \frac{\sqrt{2}}{2} \).
The result is in canonical form.
interface BoxedExpressionsolve() Permalink
interface BoxedExpressionsubexpressions: BoxedExpression[] Permalink
All the subexpressions in this expression, recursively
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionsubs() Permalink
Replace all the symbols in the expression as indicated.
Note the same effect can be achieved with this.replace()
, but
using this.subs()
is more efficient, and simpler.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionsymbolDefinition: undefined | BoxedSymbolDefinition Permalink
For symbols, a possible definition associated with the expression.
Note undefined
if not a symbol
interface BoxedExpressionsymbols: string[] Permalink
All the symbols in the expression, recursively
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionurl: undefined | string Permalink
An optional URL pointing to more information about the symbol or function head
Note undefined
if not a canonical expression.
interface BoxedExpressioncanonical: BoxedExpression read only Permalink
Return the canonical form of this expression.
If this is a function expressin, a definition is associated with the canonical expression.
When determining the canonical form the following function definition flags are applied:
associative
: \( f(a, f(b), c) \longrightarrow f(a, b, c) \)idempotent
: \( f(f(a)) \longrightarrow f(a) \)involution
: \( f(f(a)) \longrightarrow a \)commutative
: sort the arguments.
If his expression is already canonical, the value of canonical is
this
.
interface BoxedExpressiondomain Permalink
The domain of the value of this expression.
If a function expression, the domain of the value of the function (the codomain of the function).
If a symbol the domain of the value of the symbol.
Use expr.head
to determine if an expression is a symbol or function.
Note: If non-canonical, return the domain of its canonical counterpart
Modify the domain of a symbol that represent a variable (or a function name).
Note: If non-canonical, does nothing.
interface BoxedExpressionisCanonical: boolean Permalink
If true
, this expression is in a canonical form.
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionlatex: string Permalink
LaTeX representation of this expression.
The serialization can be customized with ComputeEngine.latexOptions
Note applicable to canonical and non-canonical expressions.
interface BoxedExpressionvalue Permalink
Synonym for evaluate()
. If the expression is pure, the value may be
cached.
It returns undefined
for expressions that are not pure or that may
not be evaluated.
Note: If non-canonical, return the value of its canonical counterpart
Only the value of variables can be changed (symbols that are not constants).
Note: If non-canonical, does nothing.
interface BoxedExpressionwikidata: undefined | string Permalink
Wikidata identifier.
Note undefined
if not a canonical expression.
Primitive Methods
interface BoxedExpression[toPrimitive]() Permalink
Similar toexpr.valueOf()
but includes a hint.
interface BoxedExpressionis() Permalink
From Object.is()
. Equivalent to BoxedExpression.isSame()
interface BoxedExpressiontoJSON() Permalink
Used by JSON.stringify()
to serialize this object to JSON.
Method version of expr.json
.
interface BoxedExpressiontoString() Permalink
From Object.toString()
, return a string representation of the
expression. This string is suitable to be output to the console
for debugging, for example. To get a LaTeX representation of the
expression, use expr.latex
.
Used when coercing a BoxedExpression
to a String
.
interface BoxedExpressionvalueOf() Permalink
From Object.valueOf()
, return a primitive value for the expression.
If the expression is a machine number, or bignum or rational that can be
converted to a machine number, return a number
.
If the expression is a symbol, return the name of the symbol as a string
.
Otherwise return a LaTeX representation of the expression.
Relational Operator
interface BoxedExpressionisEqual() Permalink
Mathematical equality (strong equality), that is the value
of this expression and of rhs
are numerically equal.
The numeric value of both expressions are compared.
Numbers whose difference is less than engine.tolerance
are
considered equal. This tolerance is set when the engine.precision
is
changed to be such that the last two digits are ignored.
interface BoxedExpressionisGreater() Permalink
The numeric value of both expressions are compared.
interface BoxedExpressionisGreaterEqual() Permalink
The numeric value of both expressions are compared.
interface BoxedExpressionisLess() Permalink
If the expressions cannot be compared, return undefined
The numeric value of both expressions are compared.
interface BoxedExpressionisLessEqual() Permalink
The numeric value of both expressions are compared.
interface BoxedExpressionisSame() Permalink
Structural/symbolic equality (weak equality).
ce.parse('1+x').isSame(ce.parse('x+1'))
is false
Note applicable to canonical and non-canonical expressions.
interface BoxedSymbolDefinition Permalink
Extends BoxedBaseDefinition, SymbolAttributes, Partial<SymbolFlags>
interface BoxedSymbolDefinitionProperties / Methods
interface BoxedSymbolDefinitionat() Permalink
interface BoxedSymbolDefinitiondomain: undefined | BoxedDomain Permalink
interface BoxedSymbolDefinitionvalue Permalink
class ComputeEngine Permalink
Implements IComputeEngine
To use the CortexJS Compute Engine, create a ComputeEngine
instance.
Use the instance to create expressions with ce.parse()
and ce.box()
.
const ce = new ComputeEngine();
let expr = ce.parse("e^{i\\pi}");
console.log(expr.N().latex);
// ➔ "-1"
expr = ce.box(["Expand", ["Power", ["Add", "a", "b"], 2]]);
console.log(expr.evaluate().latex);
// ➔ "a^2 + 2ab + b^2"
class ComputeEnginenew ComputeEngine() Permalink
-
options?:
- defaultDomain: string;
If an unknown symbol is encountered, assume it should be a variable in this domain. Default
ExtendedRealNumber
- ids: Readonly<IdTable>[];
- latexDictionary: readonly LatexDictionaryEntry[];
- numericMode: NumericMode;
The default mode is
"auto"
. Use"machine"
to perform numeric calculations using 64-bit floats. Use"bignum"
to perform calculations using arbitrary precision floating point numbers. Use"auto"
or"complex"
to allow calculations on complex numbers.- numericPrecision: number;
Specific how many digits of precision for the numeric calculations. Default is 100.
- tolerance: number;
If the absolute value of the difference of two numbers is less than
tolerance
, they are considered equal. Used bychop()
as well.
- → ComputeEngine
Construct a new ComputeEngine
instance.
Identifier tables define functions and symbols (in options.ids
).
If no table is provided the standard library is used (ComputeEngine.getStandardLibrary()
)
The LaTeX syntax dictionary is defined in options.latexDictionary
.
The order of the dictionaries matter: the definitions from the later ones
override the definitions from earlier ones. The first dictionary should
be the 'core'
dictionary which include some basic definitions such
as domains (Boolean
, Number
, etc…) that are used by later dictionaries.
class ComputeEngineProperties / Methods
- add
- ask
- assume
- assumptions
- box
- canonical
- chop
- context
- costFunction
- defaultDomain
- defineFunction
- defineSymbol
- div
- domain
- error
- fn
- forget
- getLatexDictionary
- getStandardLibrary
- hold
- infer
- inv
- iterationLimit
- jsonSerializationOptions
- latexOptions
- let
- lookupFunction
- lookupSymbol
- mul
- neg
- number
- numericMode
- pair
- parse
- pattern
- popScope
- pow
- precision
- pushScope
- rawJson
- recursionLimit
- rules
- serialize
- set
- sqrt
- stats
- strict
- string
- symbol
- timeLimit
- tolerance
- tuple
class ComputeEngineadd() Permalink
Shortcut for this.fn("Add"...)
.
The result is canonical.
class ComputeEngineask() Permalink
Return a list of all the assumptions that match a pattern.
ce.assume(x, 'PositiveInteger');
ce.ask(['Greater', 'x', '_val'])
// -> [{'val': 0}]
class ComputeEngineassume() Permalink
Add an assumption.
Note that the assumption is put into canonical form before being added.
class ComputeEngineassumptions: ExpressionMapInterface<boolean> read only Permalink
class ComputeEnginebox() Permalink
-
expr:
- | SemiBoxedExpression
- | [num: number, denom: number]
-
options?:
- canonical: boolean;
- → BoxedExpression
Return a boxed expression from the input.
class ComputeEnginecanonical() Permalink
class ComputeEnginechop() Permalink
Replace a number that is close to 0 with the exact integer 0.
How close to 0 the number has to be to be considered 0 is determined by tolerance.
class ComputeEnginecontext: null | RuntimeScope Permalink
The current scope.
A scope stores the definition of symbols and assumptions.
Scopes form a stack, and definitions in more recent scopes can obscure definitions from older scopes.
The ce.context
property represents the current scope.
class ComputeEnginecostFunction Permalink
class ComputeEnginedefaultDomain Permalink
If an unknown symbol is encountered, assume it should be a variable in this domain.
If set to null
, unknown symbols will trigger an error.
Default: "ExtendedRealNumber"
class ComputeEnginedefineFunction() Permalink
Associate a new definition to a function in the current context.
If a definition existed previously, it is replaced.
class ComputeEnginedefineSymbol() Permalink
Add (or replace) a definition for a symbol in the current scope.
class ComputeEnginediv() Permalink
Shortcut for this.fn("Divide", [num, denom])
The result is canonical.
class ComputeEnginedomain() Permalink
Return a canonical boxed domain.
If the domain is invalid, may return an ["Error"]
expression
class ComputeEngineerror() Permalink
Shortcut for this.fn("Error"...)
.
The result is canonical.
-
message:
- | string
- | [string, ...SemiBoxedExpression[]]
- where?: SemiBoxedExpression
- → BoxedExpression
class ComputeEnginefn() Permalink
Return a canonical expression.
Note that the result may not be a function, or may have a different
head
than the one specified.
For example:
ce.fn("Rational", [ce.number(1), ce.number(2)]))
( \to ) ce.number([1,2])
class ComputeEngineforget() Permalink
Remove all assumptions about one or more symbols
class ComputeEnginegetLatexDictionary() Permalink
class ComputeEnginegetStandardLibrary() Permalink
Return identifier tables suitable for the specified categories, or "all"
for all categories ("arithmetic"
, "algebra"
, etc…).
An identifier table defines how the symbols and function names in a MathJSON expression should be interpreted, i.e. how to evaluate and manipulate them.
class ComputeEnginehold() Permalink
Add a["Hold"]
wrapper to `expr.
class ComputeEngineinfer() Permalink
class ComputeEngineinv() Permalink
Shortcut for this.fn("Divide", [1, expr])
The result is canonical.
class ComputeEngineiterationLimit: number read only Permalink
class ComputeEnginejsonSerializationOptions Permalink
class ComputeEnginelatexOptions Permalink
class ComputeEnginelet() Permalink
Declare identifiers (specify their domain without necessarily assigning them a value in the current scope)
class ComputeEnginelookupFunction() Permalink
Return the definition for a function matching this head.
Start looking in the current context, than up the scope chain.
This is a very rough lookup, since it doesn’t account for the domain
of the argument or the codomain. However, it is useful during parsing
to differentiate between symbols that might represent a function application, e.g. f
vs x
.
class ComputeEnginelookupSymbol() Permalink
Return a matching symbol definition, starting with the current scope and going up the scope chain. Prioritize finding a match by wikidata, if provided.
class ComputeEnginemul() Permalink
Shortcut for this.fn("Multiply"...)
The result is canonical.
class ComputeEngineneg() Permalink
Shortcut for this.fn("Negate", [expr])
The result is canonical.
class ComputeEnginenumber() Permalink
-
value:
- | string
- | number
- | bigint
- | Decimal
- | Complex
- | MathJsonNumber
- | Rational
-
options?:
- canonical: boolean;
- metadata: Metadata;
- → BoxedExpression
Return a boxed number
class ComputeEnginenumericMode: NumericMode Permalink
The numeric evaluation mode:
Mode | |
---|---|
"auto" |
Use bignum or complex numbers. |
"machine" |
IEEE 754-2008, 64-bit floating point numbers: 52-bit mantissa, about 15 digits of precision |
"bignum" |
Arbitrary precision floating point numbers, as provided by the “decimal.js” library |
"complex" |
Complex number represented by two machine numbers, a real and an imaginary part, as provided by the “complex.js” library |
class ComputeEnginepair() Permalink
Shortcut for this.fn("Pair"...)
The result is canonical.
class ComputeEngineparse() Permalink
Parse a string of LaTeX and return a corresponding BoxedExpression
.
The result may not be canonical.
class ComputeEnginepattern() Permalink
class ComputeEnginepopScope() Permalink
Remove the topmost scope from the scope stack.
class ComputeEnginepow() Permalink
Shortcut for this.fn("Power"...)
The result is canonical.
class ComputeEngineprecision Permalink
The precision, or number of significant digits, of numeric
calculations when the numeric mode is "auto"
or "bignum"
.
To make calculations using more digits, at the cost of expanded memory
usage and slower computations, set the precision
higher.
If the numeric mode is not "auto"
or "bignum"
, it is set to "auto"
.
Trigonometric operations are accurate for precision up to 1,000.
class ComputeEnginepushScope() Permalink
class ComputeEnginerawJson() Permalink
class ComputeEnginerecursionLimit: number read only Permalink
class ComputeEnginerules() Permalink
class ComputeEngineserialize() Permalink
Serialize a BoxedExpression
or a MathJSON
expression to
a LaTeX string
class ComputeEngineset() Permalink
Assign a value to an identifier in the current scope. Use null
to reset the identifier to no value
class ComputeEnginesqrt() Permalink
class ComputeEnginestats: ComputeEngineStats read only Permalink
class ComputeEnginestrict: boolean Permalink
In strict mode (the default) the Compute Engine performs validation of domains and signature and may report errors.
When strict mode is off, results may be incorrect or generate JavaScript errors if the input is not valid.
class ComputeEnginestring() Permalink
Return a canonical boxed string
class ComputeEnginesymbol() Permalink
Return a canonical boxed symbol
class ComputeEnginetimeLimit: number read only Permalink
class ComputeEnginetolerance: number Permalink
Values smaller than the tolerance are considered to be zero for the
purpose of comparison, i.e. if |b - a| <= tolerance
, b
is considered
equal to a
.
class ComputeEnginetuple() Permalink
Shortcut for this.fn("Tuple"...)
The result is canonical.
interface ComputeEngineStats Permalink
- expressions: null | Set<BoxedExpression> Permalink
- highwaterMark: number Permalink
- symbols: Set<BoxedExpression> Permalink
interface ExpressionMapInterface Permalink
- [iterator] Permalink (): IterableIterator<[BoxedExpression, U]>
- clear Permalink (): void
- delete Permalink (expr: BoxedExpression): void
- get Permalink (expr: BoxedExpression): undefined | U
- has Permalink (expr: BoxedExpression): boolean
- set Permalink (expr: BoxedExpression, value: U): void
class LatexSyntax Permalink
To customize the parsing and serializing of LaTeX syntax, create a LatexSyntax
instance.
class LatexSyntaxnew LatexSyntax() Permalink
class LatexSyntaxMethods / Properties
class LatexSyntaxgetDictionary() Permalink
Return a LaTeX dictionary suitable for the specified category, or "all"
for all categories ("arithmetic"
, "algebra"
, etc…).
A LaTeX dictionary is needed to translate between LaTeX and MathJSON.
Each entry in the dictionary indicate how a LaTeX token (or string of tokens) should be parsed into a MathJSON expression.
For example an entry can define that the \pi
LaTeX token should map to the
symbol "Pi"
, or that the token -
should map to the function
["Negate",...]
when in a prefix position and to the function
["Subtract", ...]
when in an infix position.
Furthermore, the information in each dictionary entry is used to serialize the LaTeX string corresponding to a MathJSON expression.
Use the value returned by this function to the options
argument of the
constructor.
class LatexSyntaxparse() Permalink
class LatexSyntaxserialize() Permalink
interface Parser Permalink
interface ParserProperties / Methods
- addBoundary
- applyInvisibleOperator
- atEnd
- atTerminator
- boundaryError
- computeEngine
- error
- index
- latexAfter
- latexBefore
- lookAhead
- match
- matchAll
- matchAny
- matchArguments
- matchBoundary
- matchChar
- matchColor
- matchDecimalDigits
- matchExponent
- matchExpression
- matchLatexDimension
- matchMiddleDelimiter
- matchNumber
- matchOpenDelimiter
- matchOptionalLatexArgument
- matchOptionalSign
- matchPrimary
- matchRequiredLatexArgument
- matchSequence
- matchSignedInteger
- matchStringArgument
- matchSupsub
- matchSymbol
- matchTabular
- next
- options
- peek
- removeBoundary
- skipSpace
interface ParseraddBoundary() Permalink
interface ParserapplyInvisibleOperator() Permalink
interface ParseratEnd: boolean Permalink
True if the last token has been reached
interface ParseratTerminator() Permalink
Return true if the terminator condition is met
interface ParserboundaryError() Permalink
interface ParsercomputeEngine: IComputeEngine Permalink
interface Parsererror() Permalink
-
code:
- | string
- | [string, ...Expression[]]
- fromToken: number
- → Expression
Return an error expression with the specified code and arguments
interface Parserindex: number Permalink
interface ParserlatexAfter() Permalink
Return a LaTeX string after the index
interface ParserlatexBefore() Permalink
Return a LaTeX string before the index
interface ParserlookAhead() Permalink
Return an array of string corresponding to tokens ahead. The index is unchanged.
interface Parsermatch() Permalink
If the next token matches the target advance and return true. Otherwise return false
interface ParsermatchAll() Permalink
interface ParsermatchAny() Permalink
interface ParsermatchArguments() Permalink
- ‘enclosure’ : will look for an argument inside an enclosure (an open/close fence)
- ‘implicit’: either an expression inside a pair of
()
, or just a primary (i.e. we interpret\cos x + 1
as\cos(x) + 1
)
interface ParsermatchBoundary() Permalink
interface ParsermatchChar() Permalink
If the next token is a character, return it and advance the index
This includes plain characters (e.g. ‘a’, ‘+’…), characters
defined in hex (^^ and ^^^^), the \char
and \unicode
command.
interface ParsermatchColor() Permalink
Return a CSS color. Handle the various color formats supported by the
xcolor
package.
interface ParsermatchDecimalDigits() Permalink
interface ParsermatchExponent() Permalink
interface ParsermatchExpression() Permalink
Parse an expression:
<expression> ::=
| <prefix-op> <expression>
| <primary>
| <primary> <infix-op> <expression>
This is the top-level parsing entry point.
Stop when an operator of precedence less than until.minPrec
or the sequence of tokens until.tokens
is encountered
until
is { minPrec:0 }
by default.
interface ParsermatchLatexDimension() Permalink
Return a LaTeX dimension.
interface ParsermatchMiddleDelimiter() Permalink
interface ParsermatchNumber() Permalink
interface ParsermatchOpenDelimiter() Permalink
If matches the normalized open delimiter, returns the expected closing delimiter.
For example, if openDelim
is (
, and closeDelim
is )
it would match
\left\lparen
and return ['\right', '\rparen']
, which can be matched
with matchAll()
interface ParsermatchOptionalLatexArgument() Permalink
If the next tokens correspond to an optional LaTeX argument,
enclosed with [
and ]
return the content of the argument
as an expression and advance the index past the closing ]
.
Otherwise, return null
.
interface ParsermatchOptionalSign() Permalink
If the next token matches a +
or -
sign, return it and advance the index.
Otherwise return ''
and do not advance
interface ParsermatchPrimary() Permalink
<primary> :=
(<number> | <symbol> | <latex-command> | <function-call> | <matchfix-expr>)
(<subsup> | <postfix-operator>)*
<matchfix-expr> :=
<matchfix-op-open> <expression> <matchfix-op-close>
<function-call> ::=
| <function><matchfix-op-group-open><expression>[',' <expression>]<matchfix-op-group-close>
If not a primary, return null
and do not advance the index.
interface ParsermatchRequiredLatexArgument() Permalink
Match a required LaTeX argument:
- either enclosed in
{}
- or a single token (except if token is in
excluding
)
The excluding
option is useful to fail early when encountering a likely
syntax error, for example x^(2)
(instead of x^{2}
). With (
in the list
of excluded tokens, the match will fail and the error can be recovered.
If none is provided, excluding
is !"#$%&(),/;:?@[]
|~", \left
and \bigl
Return null if no argument was found
Return ['Sequence']
if an empty argument {}
was found
interface ParsermatchSequence() Permalink
interface ParsermatchSignedInteger() Permalink
interface ParsermatchStringArgument() Permalink
interface ParsermatchSupsub() Permalink
Match a sequence superfix/subfix operator, e.g. ^{*}
Superfix and subfix need special handling:
-
they act mostly like an infix operator, but they are commutative, i.e.
x_a^b
should be parsed identically tox^b_a
. -
furthermore, in LaTeX
x^a^b
parses the same asx^a{}^b
.
interface ParsermatchSymbol() Permalink
A symbol can be:
- a single-letter variable:
x
- a single LaTeX command:
\pi
interface ParsermatchTabular() Permalink
Parse a tabular environment, until \end{endName}
interface Parsernext() Permalink
Return the next token and advance the index
interface Parseroptions: Required<ParseLatexOptions> Permalink
interface Parserpeek: string Permalink
Return the next token, without advancing the index
interface ParserremoveBoundary() Permalink
interface ParserskipSpace() Permalink
If there are any space, advance the index until a non-space is encountered
interface Pattern Permalink
Extends BoxedExpression
interface PatternProperties / Methods
Dictionary Expression
Domain Properties
Expression Properties
Function Expression
Numeric Expression
String Expression
Symbol Expression
Other
Primitive Methods
Relational Operator
Dictionary Expression
Domain Properties
Expression Properties
Function Expression
Numeric Expression
String Expression
Symbol Expression
Other
interface Patterncount() Permalink
Return the number of exprs that matched the pattern
interface Patterntest() Permalink
If expr
matches the pattern, return true
, otherwise false
Primitive Methods
Relational Operator
interface Serializer Permalink
interface SerializerProperties / Methods
interface SerializerapplyFunctionStyle() Permalink
Styles
interface SerializerfractionStyle() Permalink
interface SerializergroupStyle() Permalink
interface Serializerlevel: number Permalink
“depth” of the expression:
- 0 for the root
- 1 for the arguments of the root
- 2 for the arguments of the arguments of the root
- etc…
This allows for variation of the LaTeX serialized based
on the depth of the expression, for example using \Bigl(
for the top level, and \bigl(
or (
for others.
interface SerializerlogicStyle() Permalink
interface SerializernumericSetStyle() Permalink
interface SerializeronError: WarningSignalHandler Permalink
interface Serializeroptions: Required<SerializeLatexOptions> Permalink
interface SerializerpowerStyle() Permalink
interface SerializerrootStyle() Permalink
interface Serializerserialize() Permalink
Output a LaTeX string representing the expression
interface Serializerwrap() Permalink
Add a group fence around the expression if it is
an operator of precedence less than or equal to prec
.
interface SerializerwrapArguments() Permalink
A string with the arguments of expr fenced appropriately and separated by commas.
interface SerializerwrapShort() Permalink
Add a group fence around the expression if it is short (not a function)
interface SerializerwrapString() Permalink
- s: string
-
style:
- | "paren"
- | "leftright"
- | "big"
- | "none"
- fence?: string
- → string
version Permalink
module compute-engineTypes
- AssumeResult
- BaseDefinition
- BaseEntry
- BoxedFunctionDefinition
- BoxedFunctionSignature
- BoxedRule
- BoxedRuleSet
- BoxedSubstitution
- CompiledExpression
- DefaultEntry
- Delimiter
- DomainCompatibility
- DomainConstructor
- DomainExpression
- DomainLiteral
- EnvironmentEntry
- EnvironmentParseHandler
- FunctionDefinition
- FunctionDefinitionFlags
- FunctionEntry
- FunctionParseHandler
- FunctionSignature
- IdTable
- InfixEntry
- InfixParseHandler
- JsonSerializationOptions
- LatexArgumentType
- LatexDictionary
- LatexDictionaryEntry
- LatexString
- LatexToken
- LibraryCategory
- MatchfixEntry
- MatchfixParseHandler
- Metadata
- NumberFormattingOptions
- NumericMode
- ParseHandler
- ParseLatexOptions
- PatternMatchOptions
- PostfixEntry
- PostfixParseHandler
- PrefixEntry
- PrefixParseHandler
- Rational
- ReplaceOptions
- Rule
- RuntimeIdentifierTable
- RuntimeScope
- Scope
- SemiBoxedExpression
- SerializeHandler
- SerializeLatexOptions
- SimplifyOptions
- Substitution
- SymbolAttributes
- SymbolDefinition
- SymbolEntry
- SymbolFlags
- SymbolParseHandler
- Terminator
AssumeResult Permalink
- | "internal-error"
- | "not-a-predicate"
- | "contradiction"
- | "tautology"
- | "ok"
BaseDefinition Permalink
- description: string | string[];
A short (about 1 line) description. May contain Markdown.
- url: string;
A URL pointing to more information about this symbol or head.
- wikidata: string;
A short string representing an entry in a wikibase.
For example
Q167
is the wikidata entry for thePi
constant.
BaseEntry Permalink
Maps a string of LaTeX tokens to a function or symbol and vice-versa.
- name: string;
Map a MathJSON function or symbol name to this entry.
Each entry should have at least a
name
or aparse
handler.An entry with no
name
cannot be serialized: thename
is used to map a MathJSON function or symbol name to the appropriate entry for serializing. However, an entry with noname
can be used to define a synonym (for example for the symbol\varnothing
which is a synonym for\emptyset
).If not
parse
handler is provided, only the trigger is used to select this entry. Otherwise, if the trigger of the entry matches the current token, theparse
handler is invoked.- serialize: LatexString | SerializeHandler;
Transform an expression into a LaTeX string. If no
serialize
handler is provided, thetrigger
property is used- trigger: LatexString | LatexToken[];
The trigger is the set of tokens that will make this record eligible for attempting to parse the stream and generate an expression. After the trigger matches, the
parse
handler is called, if available.matchfix
operators useopenDelimiter
andcloseDelimiter
instead.
BoxedFunctionDefinition Permalink
- BoxedBaseDefinition &
- FunctionDefinitionFlags &
- complexity: number;
- hold: "none" | "all" | "first" | "rest" | "last" | "most";
- signature: BoxedFunctionSignature;
BoxedFunctionSignature Permalink
- codomain: BoxedDomain | (ce: IComputeEngine, args: BoxedExpression[]): BoxedDomain | null;
- domain: BoxedDomain;
- evaluate: BoxedExpression | (ce: IComputeEngine, args: BoxedExpression[]): BoxedExpression | undefined;
- N?: (ce: IComputeEngine, args: BoxedExpression[]): undefined | BoxedExpression;
- canonical?: (ce: IComputeEngine, args: BoxedExpression[]): null | BoxedExpression;
- compile?: (expr: BoxedExpression): CompiledExpression;
- evalDimension?: (ce: IComputeEngine, args: BoxedExpression[]): BoxedExpression;
- sgn?: (ce: IComputeEngine, args: BoxedExpression[]): undefined | 0 | 1 | -1;
- simplify?: (ce: IComputeEngine, args: BoxedExpression[]): undefined | BoxedExpression;
BoxedRule Permalink
BoxedRuleSet Permalink
BoxedSubstitution Permalink
CompiledExpression Permalink
- evaluate?: (scope: {[symbol: string]: BoxedExpression}): number | BoxedExpression;
DefaultEntry Permalink
A simple LaTeX dictionary entry, for example for a command like \pi
.
- BaseEntry &
- parse: Expression | SymbolParseHandler;
- precedence: number;
Delimiter Permalink
Open and close delimiters that can be used with MatchfixEntry record to define new LaTeX dictionary entries.
- | ")"
- | "("
- | "]"
- | "["
- | "{"
- | "}"
- | "<"
- | ">"
- | "|"
- | "||"
- | "\lceil"
- | "\rceil"
- | "\lfloor"
- | "\rfloor"
DomainCompatibility Permalink
- | "covariant"
- | "contravariant"
- | "bivariant"
- | "invariant"
DomainConstructor Permalink
A domain constructor is the head of a domain expression.
- | "Error"
- | "Matrix"
- | "SquareMatrix"
- | "Vector"
- | "Function"
- | "List"
- | "Dictionary"
- | "Tuple"
- | "Range"
- | "Interval"
- | "Intersection"
- | "Union"
- | "Maybe"
- | "Sequence"
- | "Head"
- | "Symbol"
- | "Value"
- | "Covariant"
- | "Contravariant"
- | "Bivariant"
- | "Invariant"
DomainExpression Permalink
- | DomainLiteral
- | [DomainConstructor, ...(string | T | DomainExpression<T>)[]]
- | ["Error", T]
- | ["Error", T, T]
- | ["Union", ...DomainExpression<T>[]]
- | ["Intersection", ...DomainExpression<T>[]]
- | ["Matrix", DomainExpression<T>, T, T]
- | ["SquareMatrix", DomainExpression<T>, T]
- | ["Vector", DomainExpression<T>, T]
- | ["List", DomainExpression<T>]
- | ["Dictionary", DomainExpression<T>]
- | ["Tuple", ...DomainExpression<T>[]]
- | ["Maybe", DomainExpression<T>]
- | ["Sequence", DomainExpression<T>]
- | ["Range"]
- | ["Range", T]
- | ["Range", T, T]
- | ["Range", T, T, T]
- | ["Interval", T, T]
- | ["Interval", ["Open", T], T]
- | ["Interval", T, ["Open", T]]
- | ["Interval", ["Open", T], ["Open", T]]
- | ["Value", T]
- | ["Head", string]
- | ["Symbol", string]
- | ["Covariant", DomainExpression<T>]
- | ["Contravariant", DomainExpression<T>]
- | ["Bivariant", DomainExpression<T>]
- | ["Invariant", DomainExpression<T>]
- | ["Function", ...DomainExpression<T>[]]
DomainLiteral Permalink
EnvironmentEntry Permalink
A LaTeX dictionary entry for an environment, that is a LaTeX
construct using \begin{...}...\end{...}
.
- BaseEntry &
- kind: "environment";
- parse: EnvironmentParseHandler;
EnvironmentParseHandler Permalink
FunctionDefinition Permalink
Definition record for a function.
- BaseDefinition &
- Partial<FunctionDefinitionFlags> &
- complexity: number;
A number used to order arguments.
Argument with higher complexity are placed after arguments with lower complexity when ordered canonically in commutative functions.
- Additive functions: 1000-1999
- Multiplicative functions: 2000-2999
- Root and power functions: 3000-3999
- Log functions: 4000-4999
- Trigonometric functions: 5000-5999
- Hypertrigonometric functions: 6000-6999
- Special functions (factorial, Gamma, …): 7000-7999
- Collections: 8000-8999
- Inert and styling: 9000-9999
- Logic: 10000-10999
- Relational: 11000-11999
Default: 100,000
- hold: "none" | "all" | "first" | "rest" | "last" | "most";
"none"
Each of the arguments is evaluated (default)"all"
None of the arguments are evaluated and they are passed as is"first"
The first argument is not evaluated, the others are"rest"
The first argument is evaluated, the others aren’t"last"
: The last argument is not evaluated, the others are"most"
: All the arguments are evaluated, except the last one
Default:
"none"
- signature: FunctionSignature;
FunctionDefinitionFlags Permalink
A function definition can have some flags to indicate specific properties of the function.
- associative: boolean;
If
true
,["f", ["f", a], b]
simplifies to["f", a, b]
Default:
false
- commutative: boolean;
If
true
,["f", a, b]
equals["f", b, a]
. The canonical version of the function will order the arguments.Default:
false
- idempotent: boolean;
If
true
,["f", ["f", x]]
simplifies to["f", x]
.Default:
false
- inert: boolean;
An inert function evaluates directly to one of its argument, typically the first one. They may be used to provide formating hints, but do not affect simplification or evaluation.
Default: false
- involution: boolean;
If
true
,["f", ["f", x]]
simplifies tox
.Default:
false
- numeric: boolean;
All the arguments of a numeric function are numeric, and its value is numeric.
- pure: boolean;
If
true
, the value of this function is always the same for a given set of arguments and it has no side effects.An expression using this function is pure if the function and all its arguments are pure.
For example
Sin
is pure,Random
isn’t.This information may be used to cache the value of expressions.
Default:
true
- threadable: boolean;
If
true
, the function is applied element by element to lists, matrices (["List"]
or["Tuple"]
expressions) and equations (relational operators).Default:
false
FunctionEntry Permalink
- BaseEntry &
- kind: "function";
- parse: Expression | FunctionParseHandler;
Indicate if this symbol can be followed by arguments.
The presence of arguments will indicate that the arguments should be applied to the symbol. Otherwise, the invisible operator is applied to the symbol and the arguments.
If
arguments
is"group"
:“f(x)” ->
["f", "x"]
“f x” ->["Multiply", "f", "x"]
If
arguments
is""
:“f(x)” ->
["Multiply", "f", "x"]
“f x” ->["Multiply", "f", "x"]
If
arguments
is"implicit"
and the symbol is followed either by a group or by a primary (prefix + symbol + subsupfix + postfix). Used for trig functions. i.e.\sin x
vs\sin(x)
:“f(x)” ->
["f", "x"]
“f x” ->["f", "x"]
FunctionParseHandler Permalink
FunctionSignature Permalink
- domain: BoxedDomain | DomainExpression;
The domain of this signature, a domain compatible with the
Function
domain)- evaluate: SemiBoxedExpression | (ce: IComputeEngine, args: BoxedExpression[]): BoxedExpression | undefined;
Evaluate symbolically a function expression.
The arguments have been symbolically evaluated, except the arguments to which a
hold
apply.It is not necessary to further simplify or evaluate the arguments.
If performing numerical calculations, if all the arguments are exact, return an exact expression. If any of the arguments is not exact, that is if it is a literal decimal (non-integer) number, return an approximation. In this case, the value may be the same as
expr.N()
.When doing an exact calculation:
- do not reduce rational numbers to decimal (floating point approximation)
- do not down convert bignums to machine numbers
- do not reduce square roots of rational numbers
- do not reduce constants with a
hold
attribute
If the expression cannot be evaluated, due to the values, domains, or assumptions about its arguments, for example, return
undefined
or an["Error"]
expression.- N?: (ce: IComputeEngine, args: BoxedExpression[]): undefined | BoxedExpression;
Evaluate numerically a function expression.
The arguments
args
have been simplified and evaluated, numerically if possible, except the arguments to which ahold
apply.The arguments may be a combination of numbers, symbolic expressions and other expressions.
Perform as many calculations as possible, and return the result.
Return
undefined
if there isn’t enough information to perform the evaluation, for example one of the arguments is a symbol with no value. If the handler returnsundefined
, symbolic evaluation of the expression will be returned instead to the caller.Return
NaN
if there is enough information to perform the evaluation, but a literal argument is out of range or not of the expected type.Note that regardless of the current value of
ce.numericMode
, the arguments may be boxed numbers representing machine numbers, bignum numbers, complex numbers, rationals or big rationals.Use the value of
ce.numericMode
to determine how to perform the numeric evaluation.If the numeric mode does not allow complex numbers (the
engine.numericMode
is not"complex"
or"auto"
) and the result of the evaluation would be a complex number, returnNaN
instead.If
ce.numericMode
is"bignum"
or"auto"
the evaluation should be done using bignums.Otherwise,
ce.numericMode
is `“machine”, the evaluation should be performed using machine numbers.You may perform any necessary computations, including approximate calculations on floating point numbers.
- canonical?: (ce: IComputeEngine, args: BoxedExpression[]): null | BoxedExpression;
Return the canonical form of the expression with the arguments
args
.The arguments (
args
) may not be in canonical form. If necessary, they can be put in canonical form.This handler should validate the domain and number of the arguments. If a required argument is missing, it should be indicated with a
["Error", "'missing"]
expression. If more arguments than expected are present, this should be indicated with aunexpected-argument
error. If the domain of an argument is not compatible, it should be indicated with aincompatible-domain
error.["Sequence"]
expressions are not folded and need to be handled explicitly.If the function is associative, idempotent or an involution, this handler should account for it. Notably, if it is commutative, the arguments should be sorted in canonical order.
The handler can make transformations based on the value of the arguments that are exact and literal (i.e.
arg.numericValue !== null && arg.isExact
).Values of symbols should not be substituted.
The handler should not consider the value or any assumptions about any of the arguments that are symbols or functions (i.e.
arg.isZero
,arg.isInteger
, etc…) since those may change over time.The result of the handler should be a canonical expression.
If the arguments do not match, they should be replaced with an appropriate
["Error"]
expression. If the expression cannot be put in canonical form, the handler should returnnull
.- codomain?: (ce: IComputeEngine, args: BoxedDomain[]): null | BoxedDomain;
An optional handler to determine the codomain of the function. If not provided, the codomain of the function is determined from
domain
- compile?: (expr: BoxedExpression): CompiledExpression;
Return a compiled (optimized) expression.
- evalDimension?: (ce: IComputeEngine, args: BoxedExpression[]): BoxedExpression;
-
experimental
Dimensional analysis
- sgn?: (ce: IComputeEngine, args: BoxedExpression[]): undefined | 0 | 1 | -1;
Return the sign of the function expression.
- simplify?: (ce: IComputeEngine, args: BoxedExpression[]): undefined | BoxedExpression;
Rewrite an expression into a simpler form.
The arguments are in canonical form and have been simplified.
The handler can use the values assigned to symbols and the assumptions about symbols, for example with
arg.numericValue
,arg.isInteger
orarg.isPositive
.Even though a symbol may not have a value, there may be some information about it reflected for example in
this.isZero
orthis.isPrime
.The handler should not perform approximate numeric calculations, such as calculations involving decimal numbers (non-integers). Making exact calculations on integers or rationals is OK.
This handler should not have any side-effects: do not modify the environment of the
ComputeEngine
instance, do not perform I/O, do not do calculations that depend on random values.If no simplification can be performed due to the values, domains or assumptions about its arguments, for example, return
undefined
.
IdTable Permalink
An ID table contains definitions for symbols and functions.
The index of the table is an identifier, the name of the symbol or function for this definition
The name of a symbol or function is an arbitrary string of Unicode characters, however the following conventions are recommended:
- Use only letters, digits and
-
:/[a-zA-Z0-9-]+/
- The first character should be a letter:
/^[a-zA-Z]/
- Functions and symbols exported from a library should start with an uppercase letter
/^[A-Z]/
- [id: string]: SymbolDefinition | FunctionDefinition}
InfixEntry Permalink
- BaseEntry &
- associativity: "right" | "left" | "non" | "both";
both
: a + b + c +(a, b, c)left
: a / b / c -> /(/(a, b), c)right
: a = b = c -> =(a, =(b, c))non
: a < b < c -> syntax error
- a
both
-associative operator has an unlimited number of arguments - a
left
,right
ornon
associative operator has at most two arguments
- kind: "infix";
Infix position, with an operand before and an operand after:
a ⊛ b
.Example:
+
,\times
.- parse: string | InfixParseHandler;
- precedence: number;
InfixParseHandler Permalink
JsonSerializationOptions Permalink
Options to control the serialization to MathJSON when using BoxedExpression.json
.
- exclude: string[];
A list of space separated function names that should be excluded from the JSON output.
Those functions are replaced with an equivalent, for example,
Square
withPower
, etc…Possible values include
Sqrt
,Root
,Square
,Exp
,Subtract
,Rational
,Complex
Default:
[]
(none)- metadata: ("all" | "wikidata" | "latex")[];
A list of space separated keywords indicating which metadata should be included in the MathJSON. If metadata is included, shorthand notation is not used.
Default:
[]
(none)- precision: "auto" | "max" | number;
Number literals are serialized with this precision. If
"auto"
, the same precision as the compute engine calculations is used If"max"
, all available digits are serializedDefault:
"auto"
- repeatingDecimals: boolean;
If true, repeating decimals are detected and serialized accordingly For example:
1.3333333333333333
( \to )1.(3)
0.142857142857142857142857142857142857142857142857142
( \to )0.(1428571)
Default:
true
- shorthands: ("all" | "number" | "symbol" | "function" | "dictionary" | "string")[];
A list of space separated keywords indicating which MathJSON expressions can use a shorthand.
Default:
["all"]
LatexArgumentType Permalink
- | "{expression}"
- | "[expression]"
- | "{text}"
- | "[text]"
- | "{unit}"
- | "[unit]"
- | "{glue}"
- | "[glue]"
- | "{string}"
- | "[string]"
- | "{color}"
- | "[color]"
LatexDictionary Permalink
LatexDictionaryEntry Permalink
LatexString Permalink
A LaTeX string starts and end with $
, for example
"$\frac{\pi}{2}$"
.
LatexToken Permalink
A LatexToken
is a token as returned by Scanner.peek
.
It can be one of the indicated tokens, or a string that starts with a
\
for LaTeX commands, or a LaTeX character which includes digits,
letters and punctuation.
- | string
- | "<{>"
- | "<}>"
- | "<space>"
- | "<$>"
- | "<$$>"
LibraryCategory Permalink
- | "algebra"
- | "arithmetic"
- | "calculus"
- | "collections"
- | "control-structures"
- | "combinatorics"
- | "core"
- | "data-structures"
- | "dimensions"
- | "domains"
- | "linear-algebra"
- | "logic"
- | "numeric"
- | "other"
- | "physics"
- | "polynomials"
- | "relop"
- | "sets"
- | "statistics"
- | "styling"
- | "symbols"
- | "trigonometry"
- | "units"
MatchfixEntry Permalink
- BaseEntry &
- closeDelimiter: Delimiter | LatexToken[];
- kind: "matchfix";
- openDelimiter: Delimiter | LatexToken[];
If
kind
is'matchfix'
: thecloseDelimiter
andopenDelimiter
property are required- parse: MatchfixParseHandler;
When invoked, the parser is pointing after the close delimiter. The argument of the handler is the body, i.e. the content between the open delimiter and the close delimiter.
MatchfixParseHandler Permalink
Metadata Permalink
Metadata that can be associated with a BoxedExpression
- latex: string;
- wikidata: string;
NumberFormattingOptions Permalink
- avoidExponentsInRange: undefined | null | [negativeExponent: number, positiveExponent: number];
- beginExponentMarker: LatexString;
- beginRepeatingDigits: LatexString;
- decimalMarker: LatexString;
A string representing the decimal marker, the string separating the whole portion of a number from the fractional portion, i.e. the ‘.’ in ‘3.1415’.
Some countries use a comma rather than a dot. In this case it is recommended to use
"{,}"
as the marker: the surrounding brackets ensure there is no additional gap after the comma.Default:
"."
- endExponentMarker: LatexString;
- endRepeatingDigits: LatexString;
- exponentProduct: LatexString;
- groupSeparator: LatexString;
A string representing the separator between groups of digits, used to improve readability of numbers with lots of digits.
If you change it to another value, be aware that this may lead to unexpected results. For example, if changing it to
,
the expression\mathrm{Hypot}(1,2)
will parse as["Hypot", 1.2]
rather than["Hypot", 1, 2]
.Default:
"\\,"
(thin space, 3/18mu) (Resolution 7 of the 1948 CGPM)- imaginaryUnit: LatexString;
- negativeInfinity: LatexString;
- notANumber: LatexString;
- notation: "engineering" | "auto" | "scientific";
- positiveInfinity: LatexString;
- precision: number;
- truncationMarker: LatexString;
NumericMode Permalink
The numeric evaluation mode:
Mode | |
---|---|
"auto" |
Use bignum or complex numbers. |
"machine" |
IEEE 754-2008, 64-bit floating point numbers: 52-bit mantissa, about 15 digits of precision |
"bignum" |
Arbitrary precision floating point numbers, as provided by the “decimal.js” library |
"complex" |
Complex number represented by two machine numbers, a real and an imaginary part, as provided by the “complex.js” library |
- | "auto"
- | "machine"
- | "bignum"
- | "complex"
ParseHandler Permalink
ParseLatexOptions Permalink
- applyInvisibleOperator: "auto" | null | (parser: Parser, lhs: Expression, rhs: Expression): Expression | null;
This function is invoked when a number is followed by a symbol, an open delimiter or a function.
If this function is set to
null
, the lhs and rhs are joined as aSequence
.If this function is set to
undefined
it behaves in the following way:- a number followed by a numeric expression is considered as separated with an invisible multiplication sign, and the two are joined as [‘Multiply’, lhs, rhs].
- a number followed by a rational number is considered to be separated with an invisible plus, and the two are joined as [‘Add’, lhs,
For example with
2\frac{3}{4}
:["Add", 2, ["Divide", 3, 4]]
- parseArgumentsOfUnknownLatexCommands: boolean;
When an unknown LaTeX command is encountered, attempt to parse any arguments it may have.
For example,
\foo{x+1}
would produce['\foo', ['Add', 'x', 1]]
if this property is true,['LatexSymbols', '\foo', '<{>', 'x', '+', 1, '<{>']
otherwise.- parseNumbers: boolean;
When a number is encountered, parse it.
Otherwise, return each token making up the number (minus sign, digits, decimal marker, etc…).
Default:
true
- preserveLatex: boolean;
If true, the expression will be decorated with the LaTeX fragments corresponding to each elements of the expression.
The top-level expression, that is the one returned by
parse()
, will include the verbatim LaTeX input that was parsed. The sub-expressions may contain a slightly different LaTeX, for example with consecutive spaces replaced by one, with comments removed and with some low-level LaTeX commands replaced, for example\egroup
and\bgroup
.Default:
false
- skipSpace: boolean;
If true, ignore space characters.
Default:
true
- parseUnknownIdentifier: (symbol: string, parser: Parser): "symbol" | "function" | "unknown";
This handler is invoked when the parser encounter a set of tokens at a position that could be a symbol or function.
The
symbol
argument is one or more tokens.The handler can return:
-
symbol
to indicate the string represent a constant or variable. -
function
to indicate the string is a function name. If an apply function operator (typically, parentheses) follow, parse them as arguments to the function. -
error
, an error condition is raised.
-
PatternMatchOptions Permalink
- exact: boolean;
- numericTolerance: number;
- recursive: boolean;
- substitution: BoxedSubstitution;
PostfixEntry Permalink
- BaseEntry &
- kind: "postfix";
Postfix position, with an operand before:
a ⊛
Example:
!
.- parse: PostfixParseHandler;
- precedence: number;
PostfixParseHandler Permalink
PrefixEntry Permalink
- BaseEntry &
- kind: "prefix";
Prefix position, with an operand after:
⊛ a
Example:
-
,\not
.- parse: PrefixParseHandler;
- precedence: number;
PrefixParseHandler Permalink
Rational Permalink
- | [number, number]
- | [bigint, bigint]
ReplaceOptions Permalink
- iterationLimit: number;
If
iterationLimit
> 1, the rules will be repeatedly applied until no rules apply, up tomaxIterations
times.Note that if
once
is true,maxIterations
has no effect.Default:
1
- once: boolean;
If
true
, stop after the first rule that matches.If
false
, apply all the remaining rules even after the first match.Default:
true
- recursive: boolean;
If
true
, apply replacement rules to all sub-expressions. Iffalse
, only consider the top-level expression.Default:
true
Rule Permalink
A rule describes how to modify an expressions that matches a lhs
pattern
into a new expressions matching rhs
.
x-1
( \to ) 1-x
(x+1)(x-1)
( \to ) `x^2-1
The lhs
can be expressed as a LaTeX string or a MathJSON expression.
Unbound variables (x
, but not Pi
) are matched structurally with a
a target expression, then the expression is rewritten as the rhs
, with
the corresponding unbound variables in the rhs
replaced by their values
in the `lhs.
Pattern symbols (e.g. _1
, _a
) can be used as well.
In addition:
__1
(__a
, etc…) match a sequence of one or more expressions___1
(___a
, etc…) match a sequence of zero or more expressions
RuntimeIdentifierTable Permalink
The entries of a RuntimeIdentifierTable
have been validated and
optimized for faster evaluation.
When a new scope is created with pushScope()
or when creating a new
engine instance, new instances of RuntimeIdentifierTable
are created
as needed.
RuntimeScope Permalink
- Scope &
- assumptions: undefined | ExpressionMapInterface<boolean>;
- idTable: RuntimeIdentifierTable;
- lowWaterMark: number;
Free memory should not go below this level for execution to proceed
- origin: {column: number; line: number; name: string};
The location of the call site that created this scope
- parentScope: RuntimeScope;
Scope Permalink
A scope is a set of names in a dictionary that are bound (defined) in a MathJSON expression.
Scopes are arranged in a stack structure. When an expression that defined a new scope is evaluated, the new scope is added to the scope stack. Outside of the expression, the scope is removed from the scope stack.
The scope stack is used to resolve symbols, and it is possible for a scope to ‘mask’ definitions from previous scopes.
Scopes are lexical (also called a static scope): they are defined based on where they are in an expression, they are not determined at runtime.
- iterationLimit: number;
-
experimental
Signal
iteration-limit-exceeded
when the iteration limit for this scope is exceeded. Default: no limits. - memoryLimit: number;
-
experimental
Signal
out-of-memory
when the memory usage for this scope is exceeded. Memory in Megabytes, default: 1Mb. - recursionLimit: number;
-
experimental
Signal
recursion-depth-exceeded
when the recursion depth for this scope is exceeded. - timeLimit: number;
-
experimental
Signal
timeout
when the execution time for this scope is exceeded. Time in seconds, default 2s.
SemiBoxedExpression Permalink
A semi boxed expression is an MathJSON expression which can include some boxed terms.
This is convenient when creating new expressions from portions
of an existing BoxedExpression
while avoiding unboxing and reboxing.
- | number
- | string
- | Decimal
- | Complex
- | MathJsonNumber
- | MathJsonString
- | MathJsonSymbol
- | MathJsonFunction
- | MathJsonDictionary
- | SemiBoxedExpression[]
- | BoxedExpression
SerializeHandler Permalink
SerializeLatexOptions Permalink
- invisibleMultiply: LatexString;
LaTeX string used to render an invisible multiply, e.g. in ‘2x’. Leave it empty to join the adjacent terms, or use
\cdot
to insert a\cdot
operator between them, i.e.2\cdot x
.Empty by default.
- invisiblePlus: LatexString;
LaTeX string used for an invisible plus, e.g. in ‘1 3/4’. Leave it empty to join the main number and the fraction, i.e. render it as
1\frac{3}{4}
, or use+
to insert a+
operator between them, i.e.1+\frac{3}{4}
Empty by default.
- missingSymbol: LatexString;
When an expression contains the error expression
["Error", 'missing']
, serialize it with this LaTeX string- multiply: LatexString;
LaTeX string used for an explicit multiply operator,
Default:
\times
- applyFunctionStyle: (expr: Expression, level: number): "paren" | "leftright" | "big" | "none";
- fractionStyle: (expr: Expression, level: number): "quotient" | "inline-solidus" | "nice-solidus" | "reciprocal" | "factor";
- groupStyle: (expr: Expression, level: number): "paren" | "leftright" | "big" | "none";
- logicStyle: (expr: Expression, level: number): "boolean" | "word" | "uppercase-word" | "punctuation";
- numericSetStyle: (expr: Expression, level: number): "compact" | "regular" | "interval" | "set-builder";
- powerStyle: (expr: Expression, level: number): "quotient" | "solidus" | "root";
- rootStyle: (expr: Expression, level: number): "radical" | "quotient" | "solidus";
SimplifyOptions Permalink
Options for BoxedExpression.simplify()
- EvaluateOptions &
- recursive: boolean;
- rules: BoxedRuleSet;
Substitution Permalink
A substitution describes the values of the wildcards in a pattern so that the pattern is equal to a target expression.
A substitution can also be considered a more constrained version of a
rule whose lhs
is always a symbol.
- [symbol: string]: T}
SymbolAttributes Permalink
- constant: boolean;
If
true
the value of the symbol is constant. The value or domain of symbols with this attribute set totrue
cannot be changed.If
false
, the symbol is a variable.Default:
false
- holdUntil: "never" | "simplify" | "evaluate" | "N";
If the symbol has a value, it is held as indicated in the table below. A green checkmark indicate that the symbol is substituted.
| Operation |
"never"
|"simplify"
|"evaluate"
|"N"
| | :— | :----- | |canonical()
| (X) | | | | |simplify()
| (X) | (X) | | | |evaluate()
| (X) | (X) | (X) | | |"N()"
| (X) | (X) | (X) | (X) |Some examples:
i
hasholdUntil: 'never'
GoldenRatio
hasholdUntil: 'simplify'
(symbolic constant)x
hasholdUntil: 'evaluate'
(variables)Pi
hasholdUntil: 'N'
(special numeric constant)
Default:
simplify
SymbolDefinition Permalink
A bound symbol (i.e. one with an associated definition) has either a domain (e.g. ∀ x ∈ ℝ), a value (x = 5) or both (π: value = 3.14… domain = TranscendentalNumber)
- BaseDefinition &
- Partial<SymbolAttributes> &
- domain: string | BoxedDomain;
- flags: Partial<SymbolFlags>;
- value: LatexString | SemiBoxedExpression | (ce: IComputeEngine): SemiBoxedExpression | null;
value
can be a function since for some constants, such asPi
, the actual value depends on theprecision
setting of theComputeEngine
SymbolEntry Permalink
- BaseEntry &
- kind: "symbol";
- parse: Expression | SymbolParseHandler;
- precedence: number;
Used for appropriate wrapping (i.e. when to surround it with parens)
SymbolFlags Permalink
When used in a SymbolDefinition
, these flags are optional.
If provided, they will override the value derived from the symbol’s value.
For example, it might be useful to override algebraic = false
for a transcendental number.
- NaN: boolean | undefined;
- algebraic: boolean | undefined;
- complex: boolean | undefined;
- composite: boolean | undefined;
- even: boolean | undefined;
- extendedComplex: boolean | undefined;
- extendedReal: boolean | undefined;
- finite: boolean | undefined;
- imaginary: boolean | undefined;
- infinity: boolean | undefined;
- integer: boolean | undefined;
- negative: boolean | undefined;
- negativeOne: boolean | undefined;
- nonNegative: boolean | undefined;
- nonPositive: boolean | undefined;
- notZero: boolean | undefined;
- number: boolean | undefined;
- odd: boolean | undefined;
- one: boolean | undefined;
- positive: boolean | undefined;
- prime: boolean | undefined;
- rational: boolean | undefined;
- real: boolean | undefined;
- zero: boolean | undefined;
SymbolParseHandler Permalink
Terminator Permalink
This indicates a condition under which parsing should stop:
- an operator of a precedence higher than specified has been encountered
- the last token has been reached
- or if a function is provided, the function returns true;
- minPrec: number;
- condition?: (parser: Parser): boolean;
grok