Topic: Integrating fails with 1e2 notation

I'm on Graph beta.

This works:

integrate( t, t, 100, x )

This fails:

integrate( t, t, 1e2, x )

In the failing case, Graph complains about an undefined variable t. I think this is a bug, because both are identical apart from the 100 / 1e2 notation. At least, the t is not undefined.

Thanks for the time looking at this.

Re: Integrating fails with 1e2 notation

The reason it fails is that you need to use a capital E for scientific notation, i.e. 1E2. The reason for this is that e is used for Euler's constant. But the error message is of course wrong. It should say that  e2 is unknown. I will try to get the error message fixed.