The leading term of a polynomial can be chosen in many different ways. For multivariate polynomials, sorting by the total degree of the monomials is often useful. Different ...
If you have a function defined in an external program, then what you need to do in order to make it possible to call the function from within Mathematica is to add ...
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 ...
Many calculations involve solving systems of linear equations. In many cases, you will find it convenient to write down the equations explicitly, and then solve them using ...
Built into Mathematica are a large number of special characters intended for use in mathematical and other notation. "Listing of Named Characters" gives a complete listing. ...
An important feature of string manipulation functions like StringReplace is that they handle not only literal strings but also patterns for collections of strings. This ...
SQLExecute allows SQL statements to be executed. Statements can be used to select data, create tables, insert data, update data, remove data, and drop tables. The statement ...
The SQL command INSERT inserts data into a database. An alternative is to use the Mathematica command SQLInsert, as described in "Inserting Data". If you find that the ...
ExponentialDistribution[\[Lambda]] represents an exponential distribution with scale inversely proportional to parameter \[Lambda].
FindInstance[expr, vars] finds an instance of vars that makes the statement expr be True. FindInstance[expr, vars, dom] finds an instance over the domain dom. Common choices ...