1 | initial version |
You can construct an interactive graph with a slider to trace de domain of the plotted function. As a proof of concept, you can check the interact given in this SageMath Cell. For the sake of completeness, I copy here the corresponding code:
f(x) = sin(2*x)-3*cos(x)
xmin = -2*pi
xmax = 4*pi
@interact
def _(xx=slider(xmin,xmax,default=xmin,label="x"),
trace=checkbox(default=False,label="Trace")):
p = plot(f(x), (x,xmin,xmax), color="green")
if trace:
p += text(r"$({0:f},{0:f})$".format(float(xx),float(f(xx))),(xx,f(xx)),
color="black", vertical_alignment="top")
p += point((xx,f(xx)), color="red", size=30)
show(p)
2 | No.2 Revision |
You can construct an interactive graph with a slider to trace de the domain of the plotted function. As a proof of concept, you can check the interact given in this SageMath Cell. For the sake of completeness, I copy here the corresponding code:
f(x) = sin(2*x)-3*cos(x)
xmin = -2*pi
xmax = 4*pi
@interact
def _(xx=slider(xmin,xmax,default=xmin,label="x"),
trace=checkbox(default=False,label="Trace")):
p = plot(f(x), (x,xmin,xmax), color="green")
if trace:
p += text(r"$({0:f},{0:f})$".format(float(xx),float(f(xx))),(xx,f(xx)),
color="black", vertical_alignment="top")
p += point((xx,f(xx)), color="red", size=30)
show(p)
3 | No.3 Revision |
You can construct an interactive graph with a slider to trace the domain of the plotted function. As a proof of concept, you can check the interact given in this SageMath Cell. For the sake of completeness, I copy here the corresponding code:
f(x) = sin(2*x)-3*cos(x)
xmin = -2*pi
xmax = 4*pi
@interact
def _(xx=slider(xmin,xmax,default=xmin,label="x"),
trace=checkbox(default=False,label="Trace")):
p = plot(f(x), (x,xmin,xmax), color="green")
if trace:
p += text(r"$({0:f},{0:f})$".format(float(xx),float(f(xx))),(xx,f(xx)),
color="black", vertical_alignment="top")
p += point((xx,f(xx)), color="red", size=30)
show(p)
4 | No.4 Revision |
You can construct an interactive graph with a slider to trace the plotted function. As a proof of concept, you can check the interact given in this SageMath Cell. For the sake of completeness, I copy here the corresponding code:
f(x) = sin(2*x)-3*cos(x)
xmin = -2*pi
xmax = 4*pi
@interact
def _(xx=slider(xmin,xmax,default=xmin,label="x"),
trace=checkbox(default=False,label="Trace")):
p = plot(f(x), (x,xmin,xmax), color="green")
if trace:
p += text(r"$({0:f},{0:f})$".format(float(xx),float(f(xx))),(xx,f(xx)),
color="black", vertical_alignment="top")
p += point((xx,f(xx)), color="red", size=30)
show(p)
5 | No.5 Revision |
You can construct an interactive graph with a slider to trace the plotted function. As a proof of concept, you can check the interact given in this SageMath Cell. For the sake of completeness, I copy here the corresponding code:
f(x) = sin(2*x)-3*cos(x)
xmin = -2*pi
xmax = 4*pi
@interact
def _(xx=slider(xmin,xmax,default=xmin,label="x"),
trace=checkbox(default=False,label="Trace")):
p = plot(f(x), (x,xmin,xmax), color="green")
if trace:
p += text(r"$({0:f},{0:f})$".format(float(xx),float(f(xx))),(xx,f(xx)), text(r"$({0:f},{1:f})$".format(float(xx),float(f(xx))),(xx,f(xx)),
color="black", vertical_alignment="top")
p += point((xx,f(xx)), color="red", size=30)
show(p)