GithubHelp home page GithubHelp logo

AskSage results to json about pg HOT 4 CLOSED

openwebwork avatar openwebwork commented on July 19, 2024
AskSage results to json

from pg.

Comments (4)

dpvc avatar dpvc commented on July 19, 2024

Just FYI, the MathObject Real stores the same number of digits as perl reals, but it only displays fewer. It uses the %g format for sprintf() by default, which gives 6 digits of precision. You could change that to get more (or fewer).

from pg.

FloraHerzner avatar FloraHerzner commented on July 19, 2024

Thank you for pointing that out. So the number of digits actually differs. repr(o) gives a higher precision than float(o). But is it nessecary to limit the number of digits for some reason?

from pg.

dpvc avatar dpvc commented on July 19, 2024

I don't believe there is any reason to limit the number. The internal format stores about 17 digits of precision (it actually uses 54 binary digits, and that gives 16 to 17 digits of precision in base 10, depending on the number being represented -- the conversion doesn't match up with decimal digits precisely). So if repr(0) produces 17 or more, then that is the best you can do.

from pg.

heiderich avatar heiderich commented on July 19, 2024

As I understand it, this function _webwork_safe_json is used to as a convenience function to convert Sage objects into JSON objects that can be interpreted properly by WeBWorK. This is necessary, since the standard representations of Sage objects are not JSON compatible. For instance we have:

  • For floats:
print float(pi)
print repr(pi)

returns

3.14159265359
pi
  • For elements of free modules:
M = FreeModule(base_ring=QQ,rank=2)
v = M([1,0])
print list(v)
print repr(v)

returns

[1, 0]
(1, 0)
  • For matrices:
I = matrix.identity(2)
print [list(i) for i in I.rows()]
print repr(I)

returns

[[1, 0], [0, 1]]
[1 0]
[0 1]

So the last case handled in

elif isinstance(o, SageObject):
                json_obj = repr(o)

seems not to cover the cases treated before.

from pg.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.