Ask Your Question
1

With sage cell server implement an automatically generated and automatically checks the job in algebra or calculus.

asked 2013-11-05 14:50:47 +0200

updated 2015-01-14 14:33:52 +0200

FrédéricC gravatar image

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>
edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
0

answered 2013-11-06 03:53:49 +0200

ppurka gravatar image

updated 2013-11-06 04:08:37 +0200

slelievre gravatar image

Look at this post and the exercise string decorator.

edit flag offensive delete link more

Comments

The pointed Url is no more in use.

Cyrille gravatar imageCyrille ( 2021-01-29 10:57:00 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2013-11-05 14:50:47 +0200

Seen: 434 times

Last updated: Nov 06 '13