Ask Your Question

avoznesensky1991's profile - activity

2019-03-05 07:26:43 +0200 received badge  Popular Question (source)
2013-11-05 16:51:08 +0200 received badge  Student (source)
2013-11-05 14:58:28 +0200 received badge  Editor (source)
2013-11-05 14:50:47 +0200 asked a question With sage cell server implement an automatically generated and automatically checks the job in algebra or calculus.

Hello! I have a problem. How to organize a dialogue with the user? So that he could enter a reply, and the server gave the answer: right or wrong. On the example of computing the determinant of a matrix. The following quote program listing.

<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">

    <title>Sage Cell Server</title>

    <script src="https://sagecell.sagemath.org/static/jquery.min.js"></script>
    <script src="https://sagecell.sagemath.org/static/embedded_sagecell.js"></script>

    <script>$(function () {
    // Make the div with id 'mycell' a Sage cell
    sagecell.makeSagecell({inputLocation:  '#mycell1',
                           template:       sagecell.templates.minimal,
                           evalButtonText: 'Generate'});
    sagecell.makeSagecell({inputLocation: 'div.compute',
                           evalButtonText: 'Evaluate'});
    sagecell.makeSagecell({inputLocation:  '#mycell2',
                           template:       sagecell.templates.minimal,
                           evalButtonText: 'Generate'});

    });
    </script>
  </head>


  <body>

    <h1>Calculate the determinant</h1>

    <div id="mycell1"><script type="text/x-sage">
A=random_matrix(ZZ, 2, 2, x=-5, y=5)

D=A.det()

A=show(A)

 </script>
</div>

    <div class="compute"><script type="text/x-sage"></script></div>

  </body>
</html>