Ask Your Question
1

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

asked 11 years ago

updated 10 years ago

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>
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 11 years ago

ppurka gravatar image

updated 11 years ago

slelievre gravatar image

Look at this post and the exercise string decorator.

Preview: (hide)
link

Comments

The pointed Url is no more in use.

Cyrille gravatar imageCyrille ( 4 years ago )

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: 11 years ago

Seen: 537 times

Last updated: Nov 06 '13