I have used NSolve to solve systems of non linear equations, and it gives
me results which look good except they contain several "1.'abc" where abc
are parameters. (that's "one period apostrophe").
I assume it's shorthand notation for something but I can't tell what, the
Mathematica experts I might ask are all gone for a week and I can't find
it in the book.
Anyone know what it means ?
Best regards,
Jean-Marc
You might want to look at Section 3.1 in The Mathematica Book on Numbers.
David Park
dj...@earthlink.net
http://home.earthlink.net/~djmp/
You probably mean backtick (`). Section A.2.5.
In the help browser, go to:
The Mathematica Book > Mathematica Reference Guide > Input Syntax > Numbers
The numbers after one backtick indicates the precision of the number. Example:
In[4]:=
1.0`25
Out[4]=
1.000000000000000000000000
--
Igor C. Antonio
Wolfram Research, Inc.
http://www.wolfram.com
To email me personally, remove the dash.
means you are looking at an exact number with a nominal value of 1
(infinite precision & accuracy)
1.`
means you are looking a a machine precision number with a nominal value of 1
1.2`23
means you are looking at a number with a nominal value of 1.2 and 23
digits of precision
1.525``5
means you are looking at a number with a nominal value of 1.525 and 5
digits of accuracy
Mathematica gives its definition of precision and accuracy (which are
not independent) in section 3.1.4 of the Mathematica Book.
On 5/26/06, Arkalen <ski...@yahoo.com> wrote:
> Warning : I am a complete newbie at using Mathematica.
>
> I have used NSolve to solve systems of non linear equations, and it gives
> me results which look good except they contain several "1.'abc" where abc
> are parameters. (that's "one period apostrophe").
> I assume it's shorthand notation for something but I can't tell what, the
> Mathematica experts I might ask are all gone for a week and I can't find
> it in the book.
>
> Anyone know what it means ?
>
>