Le lundi 3 juillet 2017 16:39:54 UTC+2, Fjordforsk A/S a écrit :
> Hi, how does one write 10^(-8) ?
> Is it as the conventional way 10**(-8) or is it 10exp(-8) ?
Typing either 10**(-8) or 10^(-8) will produce a rational.
Note that you don't need the parentheses and could also
type 10**-8 or 10^
I would to the first or the second
n(10^(-8))
n(10**(-8))
the third I think it's not right but I am an expert
Le lundi 3 juillet 2017 16:39:54 UTC+2, Fjordforsk A/S a écrit :
>
> Hi, how does one write 10^(-8) ?
>
> Is it as the conventional way 10**(-8) or is it 10exp(-8) ?
>
--
You received t
Hi!
On 2017-07-03, Fjordforsk A/S wrote:
> Hi, how does one write 10^(-8) ?
>
> Is it as the conventional way 10**(-8) or is it 10exp(-8) ?
Sage is based on Python, thus, 10**(-8) definitely works.
In addition, Sage uses a preparser to make the user interface still
a bit nicer than Python. Ther