Ask Your Question
0

Plot-region depending of the interacted value

asked 5 years ago

Cyrille gravatar image

updated 5 years ago

How to have the plot dependent of the solved value a. The following code conducts to an error

def _(c=slider(0,1,step_size=0.2,default=1)):

a = solve(-c*x+6==x, x)

g = plot(x,(0,10),color="blue",ymin=0,ymax=10)

h = plot(-c*x+6,(a,6),color="yellow",ymin=0,ymax=10)

show(g+h)

Preview: (hide)

Comments

a = solve(-c*x+6==x, x) gives a list with an equation in it [x==(30/7)]. Use a[0].right() to get the value, which can then be used in a coordinate pair.

dazedANDconfused gravatar imagedazedANDconfused ( 5 years ago )

Thanks a lot

Cyrille gravatar imageCyrille ( 5 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 5 years ago

Juanjo gravatar image

In your code, the variable a does not contain a numerical value, but the list yielded by solve. You need to extract the value of the solution, for example, with

a = x.subs(solve(-c*x+6==x, x))

In addition, when the slider takes the value c=0, then a=6. This causes a new error when computing the plot h, since the interval appearing there starts and ends with the same value. Finally, the yellow color is not , IMHO, a good choice, it is hardly visible.

The following code tries to solve these issues:

@interact
def _(c=slider(0.1,1,step_size=0.2,default=1)):
    a = x.subs(solve(-c*x+6==x, x))
    g = plot(x,(0,10),color="blue",ymin=0,ymax=10)
    h = plot(-c*x+6,(a,6),color="green",ymin=0,ymax=10)
    show(g+h)
Preview: (hide)
link

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

Seen: 290 times

Last updated: Apr 09 '20