I am going throgh algorithms. It is mentioned that one of the application of algorithms is symbolic mathematics. And I found following defintion from dictionary as below.
The use of computers to manipulate mathematical equations and
expressions in symbolic form, as opposed to manipulating the numerical
quantities represented by those symbols. Such a system might be used
for symbolic integration or differentiation, substitution of one
expression into another, simplification of an expression, change of
subject etc. One of the best known symbolic mathematics software
packages is Mathematica.
My question what does statement “equations and expressions in symbolic form, as opposed to manipulating the numerical quantities represented by those symbols.” mean?
Thanks!
By the second, something like this is meant:
where you’re treating
x,y, andzas names for numbers. You’re using the computer as an old-fashioned calculator, where it only does arithmetic.z = x+2*yperforms the arithmetic operations described on the right and associates the resulting number toz.By the “symbolic form”, something more like this is meant:
where
x,y, andzcan be expressions, or variables in some structure, rather than merely names for specific numbers, and higher-level operations can be performed.