what about the following ?

y=0.25
plot(lambda x : f(x, y), (0,1) )

to try different values of y on the same graph, go:

sum( [plot(lambda x : f(x,y), (0,1)) for y in srange(0, 1, 0.1)]    )

and of course there is

plot3d( lambda x, y : f(x, y),  (0,1), (0,1) )

Btw it seems the maximum of f(x,y) is 1/4, for x=y=1/2.

On Jul 31, 9:53 am, surfer <mailingslis...@googlemail.com> wrote:
> nice, thank you David Joyner. For y=1/4 the function takes its maximum 3/16
> and it's clear on the graph.
> Interesting for me is how does the plot of f for fixed x look like if f
> takes 1 as maximum?
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to