According to wiki:
In mathematics and computer science, computer algebra, also called symbolic computation or algebraic computation is a scientific area that refers to the study and development of algorithms and software for manipulating mathematical expressions and other mathematical objects
Does symbolic computation focus on symbol manipulation and computation? Lisp program is written in the form of an AST with atoms as leaves. Lisp is said to be language for symbolic computing. Does it mean that in symbolic computation, it is:
According to this question, the opposite of symbolic computation is numeric computation. What's the primary difference between these two? When I work with Octave (I'm studying it), I have to work with numbers a lot and have to guess the meaning of those magic numbers many times. Is this a numerical computation focus?
Symbolic computation lets you express and solve mathematical problems the way you think about mathematical problems-using variables, mathematical formulas, symbols such as π and ∞, and mathematical functions.
Symbolic Math Toolbox™ enables you to perform symbolic computations from the MATLAB® command line by defining a special data type — symbolic objects. Functions are called using the familiar MATLAB syntax and are available for integration, differentiation, simplification, equation solving, and other mathematical tasks.
In numeric arithmetic, you represent numbers in floating-point format using either double precision or variable precision. In symbolic arithmetic, you represent numbers in their exact form.
Lisp is said to be language for symbolic computing.
Symbolic computation is one that emphasizes term rewriting over evaluation (e-value-ation, extracting the value). Symbols (also called expressions) are rewritable terms, values imply a loss or an end to rewritability. In a way, symbols are more abstract, values more concrete.
What's the answer to 3/9
? A symbolic answer would be (a representation of) 1/3
. A value answer would be 0.333333333
, to however many decimals you care. Notice there's a loss of precision (and thus rewritability) here, 0.333333333 * 3
isn't quite 1
as it should.
A calculator (evaluating machine) will likely choke trying to evaluate (2^(74,207,281) − 1)/(2^(74,207,281) − 1)
even though the answer is trivially just 1
. There's no need to evaluate here when a mere rewrite would suffice.
And of course there's also the opposite case of equations so intractable to term rewriting that they can only be approximately answered through numerical methods.
"Symbolic Computation" is the computation with symbolic expressions.
Examples for symbolic expressions:
For the latter:
Now the task would be to generate a good plan which picks up all parcels and reaches the given goal.
In above examples symbols stand for places and for things (truck, parcel). Symbol expressions describe a situation, a plan generator will return a sequence of actions - again described as symbolic expressions.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With