Ask Your Question
0

In sage plot: fill the area under a curve between two x-values.

asked 2011-11-27 12:50:42 +0200

anonymous user

Anonymous

How do I fill the area under a curve between two $x$-values using sage plot?

For example, maybe I am using the following code:

plot(x(x-1)(x-2)+1,0,2,fill=True)

but I only want the area under the curve from x = 0.5 to x = 1.5 to be shaded in.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
6

answered 2011-11-27 13:19:28 +0200

DSM gravatar image

If I'm understanding you correctly, then one way to do this is to take advantage of the fact you can add plots:

sage: f = x*(x-1)*(x-2)+1
sage: p = plot(f, 0.5, 1.5, fill=True) + plot(f, 0, 2)
sage: show(p)

partly shaded picture

edit flag offensive delete link more

Comments

1

oh, okay, that makes sense, thank you!

Sonya gravatar imageSonya ( 2011-11-27 13:54:04 +0200 )edit

Good answer. At the same time, maybe we can support this option somehow without adding plots...

kcrisman gravatar imagekcrisman ( 2011-11-28 11:23:57 +0200 )edit

@kcrisman: Sure, we'd simply need to have fillxmin and fillxmax and use those instead. Right now it looks like fill is using xmin and xmax for both purposes. (You could probably achieve the same effect by playing games with the function specifications but that seemed like more work than the above..) That would be a good beginner-level ticket for someone who already knows Python.

DSM gravatar imageDSM ( 2011-11-28 11:31:42 +0200 )edit

Great, file it and maybe we can get it at Sage Days 35.5!

kcrisman gravatar imagekcrisman ( 2011-11-28 13:45:27 +0200 )edit
1

Did the feature get implemented? If not, how could I give it a try?

Radu gravatar imageRadu ( 2013-05-16 08:25:13 +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: 2011-11-27 12:50:42 +0200

Seen: 4,085 times

Last updated: Nov 27 '11