NETObjectToExpression[netObject] converts the specified .NET object reference into its value as a "native" Mathematica expression.
WordData["word", " property"] gives the specified property for the English word " word".WordData["word"] gives a list of full word specifications representing possible uses ...
$FrontEndInitializationFunction is a function that you can assign to execute when the front end link is first established by ConnectToFrontEnd[].
$DistributedContexts is the default value of the DistributedContexts option of functions such as ParallelTable and ParallelMap.
With careful standardization of argument conventions, Mathematica provides full coverage of elliptic integrals, with arbitrary-precision numerical evaluation for complex ...
An expression like x^2+2x-7==0 represents an equation in Mathematica. You will often need to solve equations like this, to find out for what values of x they are true. This ...
FixedPointList[f, expr] generates a list giving the results of applying f repeatedly, starting with expr, until the results no longer change.
DistributedContexts is an option for various parallel computing functions that specifies which definitions for symbols appearing in an expression should be distributed to all ...
Evaluating integrals is much more difficult than evaluating derivatives. For derivatives, there is a systematic procedure based on the chain rule that effectively allows any ...
This constructs the sum ∑_(i=1)^7 (x^i)/(i) . You can leave out the lower limit if it is equal to 1. This makes i increase in steps of 2, so that only odd-numbered values are ...