Ask Your Question
0

Strange type error in interactive

asked 2013-10-27 00:18:17 +0200

jaia gravatar image

I'm trying to make a simple interactive for my students to practice differentiating polynomials. For some reason, when an answer is entered, Sage tries to convert it (a polynomial) to an instance of sage.structure.parent.Parent and chokes. The same code run outside of an interactive works fine. Why is Sage trying to do this conversion and how do I get it to stop?

#Create polynomial generator
poly.<x>=PolynomialRing(QQ)

#Problems correct (in a row and total)
streak = 0
tot = 0
first = True

@interact
def polyDiff(ans=input_box(label="f'(x)=", type=sage.rings.polynomial.polynomial_rational_flint.Polynomial_rational_flint)):
    #Load persistent variables
    global streak
    global tot
    global first

    global poly

    #Set up and display problem on first run
    if (first == True):
         rand_poly=poly.random_element(2)
         first = False
    html("f(x)=")+html(rand_poly)

    #Define correct answer
    corr = diff(rand_poly, x)

    #Check student's answer
    if (ans is not None):
        if (corr == ans):
            print "Correct!"
            tot += 1
            streak += 1
            #Generate new problem
            rand_poly = poly.random_element(5)
        else:
            html("Try again")
            streak = 0
    else:
        print "Enter your answer"
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-10-27 04:42:58 +0200

ndomes gravatar image

Omit:

type=sage.rings.polynomial.polynomial_rational_flint.Polynomial_rational_flint

I had to set (don't know why)

global rand_poly

to get it work

A further suggestion (looks better):

html.table([("$f(x)=$",rand_poly)])
#instead of:  html("f(x)=")+html(rand_poly)
edit flag offensive delete link more

Comments

Thanks! That works. (Note to anyone wanting to use this code: move the display line to the end of the function to get the interactive to update correctly after the first problem.)

jaia gravatar imagejaia ( 2013-10-27 16:48:03 +0200 )edit
1

Even better: [Sage tables](http://sagemath.org/doc/reference/misc/sage/misc/table.html?highlight=table#sage.misc.table.table) are now a top-level thing.

kcrisman gravatar imagekcrisman ( 2013-10-27 20:22:09 +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

1 follower

Stats

Asked: 2013-10-27 00:18:17 +0200

Seen: 241 times

Last updated: Oct 27 '13