How to illustrate the Mean Value theorem?Could someone help me pgfplots the following functions (w/labels)?How to reduce the space between the y-axis label and the plotsHow to make LaTeX code from the pdf file?Put their value on each edge of the graphI want to draw a cartesian product of complete graphs.Something like the below pictureAbsolute-value bar with a gap in the middleHow to draw a node wedged between two lines?How to draw general functions and tangent linesHow to plot functions given on subintervals?How can I replicate crystal graphs in J.Stembridge's paper?
Why does Mjolnir fall down in Age of Ultron but not in Endgame?
Why aren't space telescopes put in GEO?
How strong are Wi-Fi signals?
Installed Tankless Water Heater - Internet loss when active
How to respond to an upset student?
Does Nitrogen inside commercial airliner wheels prevent blowouts on touchdown?
Externally monitoring CPU/SSD activity without software access
Is it true that cut time means "play twice as fast as written"?
Make 24 using exactly three 3s
Did people Unsnap to where they were?
Why do most published works in medical imaging try to reduce false positives?
Can I tell a prospective employee that everyone in the team is leaving?
Where's this lookout in Nova Scotia?
Website returning plaintext password
Is it possible to play as a necromancer skeleton?
Boss wants me to falsify a report. How should I document this unethical demand?
Should breaking down something like a door be adjudicated as an attempt to beat its AC and HP, or as an ability check against a set DC?
Where is the logic in castrating fighters?
Which melee weapons have the Two-Handed property, but lack Heavy and Special?
Count rotary dial pulses in a phone number (including letters)
Why are C64 games inconsistent with which joystick port they use?
Where can I find visible/radio telescopic observations of the center of the Milky Way galaxy?
What is Theresa May waiting for?
Alignment: "Breaking out" of environment (enumerate / minipage)
How to illustrate the Mean Value theorem?
Could someone help me pgfplots the following functions (w/labels)?How to reduce the space between the y-axis label and the plotsHow to make LaTeX code from the pdf file?Put their value on each edge of the graphI want to draw a cartesian product of complete graphs.Something like the below pictureAbsolute-value bar with a gap in the middleHow to draw a node wedged between two lines?How to draw general functions and tangent linesHow to plot functions given on subintervals?How can I replicate crystal graphs in J.Stembridge's paper?
What packages can I use and what code to draw these functions?
graphs code
New contributor
add a comment |
What packages can I use and what code to draw these functions?
graphs code
New contributor
add a comment |
What packages can I use and what code to draw these functions?
graphs code
New contributor
What packages can I use and what code to draw these functions?
graphs code
graphs code
New contributor
New contributor
edited 7 hours ago
Artificial Odorless Armpit
5,62611344
5,62611344
New contributor
asked 8 hours ago
precelina mprecelina m
191
191
New contributor
New contributor
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Some PSTricks solutions only for fun purposes!
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepst-plot,pst-eucl
deff(x-1)^2/5+1
defL#1#2#3#1)$#3$
begindocument
beginpspicture[algebraic,saveNodeCoors,NodeCoorPrefix=N](-2,-1)(7,5)
psaxes[labels=none,ticks=none]->(0,0)(-1,-1)(6.5,4.5)[$x$,0][$y$,90]
psplot[linecolor=red]-15f
pstGeonode[PosAngle=90](*1 f)P(*3.5 f)Q
psdot(Q|P)
pcline[nodesep=-2](P)(Q)
LPxf(x)
LQx+varepsilonf(x+varepsilon)
pcline[linecolor=blue](P)(Q|P)nbput$varepsilon$
pcline[linecolor=blue](Q)(!NQx NPy)naput$f(x+varepsilon)-f(x)$
uput[-45]([nodesep=-1]pQ)secant
uput[0](*5 f)textcolorred$y=f(x)$
endpspicture
enddocument
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepstricks-add,pst-eucl
deff(#1)((#1+3)/3+sin(#1+3))
deffp(#1)Derive(1,f(#1))
pssetunit=2
begindocument
multidor=2.0+-.119%
beginpspicture[algebraic](-1.6,-.6)(4.4,3.4)
psaxes[ticks=none,labels=none]->(0,0)(-1.6,-.6)(4.1,3.1)[$x$,0][$y$,90]
psplot[linecolor=red,linewidth=2pt]-13.9f(x)
%
psplotTangent[linecolor=blue]1.61f(x)
psplotTangent[linecolor=cyan,Derive=-1/fp(x)]1.6.5f(x)
%
pstGeonode[PosAngle=135,90]
(*1.6 f(x))A
(*1.6 rspace add f(x))B
pstGeonode[PosAngle=-120,-60,PointName=x_1,x_2,PointNameSep=8pt]
(A
enddocument
1
Very very nice answer.
– Sebastiano
6 hours ago
add a comment |
I recommend TikZ for that. (I used to love pstricks, and the pstricks solution is really neat and I upvoted it, but having seen what TikZ can do I can no longer recommend pstricks, sorry.)
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryintersections
begindocument
begintikzpicture[declare function=f(x)=0.3*(x-3.5)^3-x+7;a=1;b=6;c=4.94;]
draw[-stealth] (-0.5,0) -- (6.5,0);
draw[-stealth] (0,-0.5) -- (0,6.5);
draw[blue] plot[smooth,domain=0.5:6.1] (x,f(x));
foreach X in a,b
- (0,f(X)) node[left] $f(X)$;
draw (a,f(a)) -- (b,f(b));
draw[dashed] (c,0) -- (c,f(c));
draw[dashed,name path=hori] (a,f(a)) -- (b,f(a));
pgfmathsetmacroslopeangleatan2(f(b)-f(a),b-a)
draw[red,name path=sloped] (c,f(c)) +(slopeangle:2) -- ++ (slopeangle+180:4);
draw (a,f(a)) + (1,0) arc(0:slopeangle:1) node[midway,right]$beta$;
draw[name intersections=of=hori and sloped,by=i] (i) +(1,0)
arc(0:slopeangle:1) node[midway,right]$beta$;
endtikzpicture
enddocument
1
I have agree with your comment :-).
– Sebastiano
6 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
add a comment |
Some more fun with pstricks
, which has a psPlotTangent
command:
documentclass[svgnames, x11names, border = 5pt]standalone%
usepackage[utf8]inputenc
usepackageamsmath
usepackageauto-pst-pdf%
usepackagepstricks-add%,
defFx^3-6*x^2 + 9*x + 1
begindocument
pssetunit=2cm, arrowinset=0.12, algebraic, plotstyle=curve, plotpoints=200, dimen=inner
everypsboxfootnotesize
beginpspicture*(-1,-1)(6,5.5)
psaxes[linecolor = LightSteelBlue, ticks=none, labels=none]->(0,0)(-2,-1.2)(5,5.5)[$x$,-135][$y$,-135]
psplot[linecolor = IndianRed, linewidth =1.2pt]0.054F
pssetlinestyle=dashed, linewidth=0.3pt
psCoordinates(*0.5 F)uput[d](0.5,0)$a$uput[l](0,4.125)$f(a)$)
psCoordinates(*3.5 F)uput[d](3.5,0)$b$uput[l](0,1.875)$f(b)$)
psline[linecolor=Gold, linewidth=0.6pt] (0.5, 4.125)(3.5,1.875)
psline(1.134,0)(1.134, 4.949)(3.134, 4.949)uput[d](1.134,0)$c$
psline(2.866, 0)(2.866, 1.051)(4.866,1.051)uput[d](2.866,0)$c_1$
pssetlinestyle=solid, labelsep=24pt
foreach x in 1.134, 2.866psplotTangent[algebraic, linewidth=0.6pt, Derive=3*x^2-12*x + 9, linecolor=Gold, showpoints]x1.5F
psarc(3.5, 1.875)0.4143180uput[161](3.5, 1.875)$beta$
psarcn(1.134, 4.949)0.40-37uput[-18](1.134, 4.949)$beta$
psarcn(2.866, 1.051)0.40-37uput[-18](2.866, 1.051)$beta$
rput(5,1.5)$boxedtanbeta = dfracf(b)-f(a)b-a = f'(c)$
endpspicture*
enddocument
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
precelina m is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f492494%2fhow-to-illustrate-the-mean-value-theorem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Some PSTricks solutions only for fun purposes!
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepst-plot,pst-eucl
deff(x-1)^2/5+1
defL#1#2#3#1)$#3$
begindocument
beginpspicture[algebraic,saveNodeCoors,NodeCoorPrefix=N](-2,-1)(7,5)
psaxes[labels=none,ticks=none]->(0,0)(-1,-1)(6.5,4.5)[$x$,0][$y$,90]
psplot[linecolor=red]-15f
pstGeonode[PosAngle=90](*1 f)P(*3.5 f)Q
psdot(Q|P)
pcline[nodesep=-2](P)(Q)
LPxf(x)
LQx+varepsilonf(x+varepsilon)
pcline[linecolor=blue](P)(Q|P)nbput$varepsilon$
pcline[linecolor=blue](Q)(!NQx NPy)naput$f(x+varepsilon)-f(x)$
uput[-45]([nodesep=-1]pQ)secant
uput[0](*5 f)textcolorred$y=f(x)$
endpspicture
enddocument
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepstricks-add,pst-eucl
deff(#1)((#1+3)/3+sin(#1+3))
deffp(#1)Derive(1,f(#1))
pssetunit=2
begindocument
multidor=2.0+-.119%
beginpspicture[algebraic](-1.6,-.6)(4.4,3.4)
psaxes[ticks=none,labels=none]->(0,0)(-1.6,-.6)(4.1,3.1)[$x$,0][$y$,90]
psplot[linecolor=red,linewidth=2pt]-13.9f(x)
%
psplotTangent[linecolor=blue]1.61f(x)
psplotTangent[linecolor=cyan,Derive=-1/fp(x)]1.6.5f(x)
%
pstGeonode[PosAngle=135,90]
(*1.6 f(x))A
(*1.6 rspace add f(x))B
pstGeonode[PosAngle=-120,-60,PointName=x_1,x_2,PointNameSep=8pt]
(A
enddocument
1
Very very nice answer.
– Sebastiano
6 hours ago
add a comment |
Some PSTricks solutions only for fun purposes!
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepst-plot,pst-eucl
deff(x-1)^2/5+1
defL#1#2#3#1)$#3$
begindocument
beginpspicture[algebraic,saveNodeCoors,NodeCoorPrefix=N](-2,-1)(7,5)
psaxes[labels=none,ticks=none]->(0,0)(-1,-1)(6.5,4.5)[$x$,0][$y$,90]
psplot[linecolor=red]-15f
pstGeonode[PosAngle=90](*1 f)P(*3.5 f)Q
psdot(Q|P)
pcline[nodesep=-2](P)(Q)
LPxf(x)
LQx+varepsilonf(x+varepsilon)
pcline[linecolor=blue](P)(Q|P)nbput$varepsilon$
pcline[linecolor=blue](Q)(!NQx NPy)naput$f(x+varepsilon)-f(x)$
uput[-45]([nodesep=-1]pQ)secant
uput[0](*5 f)textcolorred$y=f(x)$
endpspicture
enddocument
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepstricks-add,pst-eucl
deff(#1)((#1+3)/3+sin(#1+3))
deffp(#1)Derive(1,f(#1))
pssetunit=2
begindocument
multidor=2.0+-.119%
beginpspicture[algebraic](-1.6,-.6)(4.4,3.4)
psaxes[ticks=none,labels=none]->(0,0)(-1.6,-.6)(4.1,3.1)[$x$,0][$y$,90]
psplot[linecolor=red,linewidth=2pt]-13.9f(x)
%
psplotTangent[linecolor=blue]1.61f(x)
psplotTangent[linecolor=cyan,Derive=-1/fp(x)]1.6.5f(x)
%
pstGeonode[PosAngle=135,90]
(*1.6 f(x))A
(*1.6 rspace add f(x))B
pstGeonode[PosAngle=-120,-60,PointName=x_1,x_2,PointNameSep=8pt]
(A
enddocument
1
Very very nice answer.
– Sebastiano
6 hours ago
add a comment |
Some PSTricks solutions only for fun purposes!
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepst-plot,pst-eucl
deff(x-1)^2/5+1
defL#1#2#3#1)$#3$
begindocument
beginpspicture[algebraic,saveNodeCoors,NodeCoorPrefix=N](-2,-1)(7,5)
psaxes[labels=none,ticks=none]->(0,0)(-1,-1)(6.5,4.5)[$x$,0][$y$,90]
psplot[linecolor=red]-15f
pstGeonode[PosAngle=90](*1 f)P(*3.5 f)Q
psdot(Q|P)
pcline[nodesep=-2](P)(Q)
LPxf(x)
LQx+varepsilonf(x+varepsilon)
pcline[linecolor=blue](P)(Q|P)nbput$varepsilon$
pcline[linecolor=blue](Q)(!NQx NPy)naput$f(x+varepsilon)-f(x)$
uput[-45]([nodesep=-1]pQ)secant
uput[0](*5 f)textcolorred$y=f(x)$
endpspicture
enddocument
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepstricks-add,pst-eucl
deff(#1)((#1+3)/3+sin(#1+3))
deffp(#1)Derive(1,f(#1))
pssetunit=2
begindocument
multidor=2.0+-.119%
beginpspicture[algebraic](-1.6,-.6)(4.4,3.4)
psaxes[ticks=none,labels=none]->(0,0)(-1.6,-.6)(4.1,3.1)[$x$,0][$y$,90]
psplot[linecolor=red,linewidth=2pt]-13.9f(x)
%
psplotTangent[linecolor=blue]1.61f(x)
psplotTangent[linecolor=cyan,Derive=-1/fp(x)]1.6.5f(x)
%
pstGeonode[PosAngle=135,90]
(*1.6 f(x))A
(*1.6 rspace add f(x))B
pstGeonode[PosAngle=-120,-60,PointName=x_1,x_2,PointNameSep=8pt]
(A
enddocument
Some PSTricks solutions only for fun purposes!
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepst-plot,pst-eucl
deff(x-1)^2/5+1
defL#1#2#3#1)$#3$
begindocument
beginpspicture[algebraic,saveNodeCoors,NodeCoorPrefix=N](-2,-1)(7,5)
psaxes[labels=none,ticks=none]->(0,0)(-1,-1)(6.5,4.5)[$x$,0][$y$,90]
psplot[linecolor=red]-15f
pstGeonode[PosAngle=90](*1 f)P(*3.5 f)Q
psdot(Q|P)
pcline[nodesep=-2](P)(Q)
LPxf(x)
LQx+varepsilonf(x+varepsilon)
pcline[linecolor=blue](P)(Q|P)nbput$varepsilon$
pcline[linecolor=blue](Q)(!NQx NPy)naput$f(x+varepsilon)-f(x)$
uput[-45]([nodesep=-1]pQ)secant
uput[0](*5 f)textcolorred$y=f(x)$
endpspicture
enddocument
documentclass[pstricks,border=12pt,12pt]standalone
usepackagepstricks-add,pst-eucl
deff(#1)((#1+3)/3+sin(#1+3))
deffp(#1)Derive(1,f(#1))
pssetunit=2
begindocument
multidor=2.0+-.119%
beginpspicture[algebraic](-1.6,-.6)(4.4,3.4)
psaxes[ticks=none,labels=none]->(0,0)(-1.6,-.6)(4.1,3.1)[$x$,0][$y$,90]
psplot[linecolor=red,linewidth=2pt]-13.9f(x)
%
psplotTangent[linecolor=blue]1.61f(x)
psplotTangent[linecolor=cyan,Derive=-1/fp(x)]1.6.5f(x)
%
pstGeonode[PosAngle=135,90]
(*1.6 f(x))A
(*1.6 rspace add f(x))B
pstGeonode[PosAngle=-120,-60,PointName=x_1,x_2,PointNameSep=8pt]
(A
enddocument
answered 8 hours ago
Artificial Odorless ArmpitArtificial Odorless Armpit
5,62611344
5,62611344
1
Very very nice answer.
– Sebastiano
6 hours ago
add a comment |
1
Very very nice answer.
– Sebastiano
6 hours ago
1
1
Very very nice answer.
– Sebastiano
6 hours ago
Very very nice answer.
– Sebastiano
6 hours ago
add a comment |
I recommend TikZ for that. (I used to love pstricks, and the pstricks solution is really neat and I upvoted it, but having seen what TikZ can do I can no longer recommend pstricks, sorry.)
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryintersections
begindocument
begintikzpicture[declare function=f(x)=0.3*(x-3.5)^3-x+7;a=1;b=6;c=4.94;]
draw[-stealth] (-0.5,0) -- (6.5,0);
draw[-stealth] (0,-0.5) -- (0,6.5);
draw[blue] plot[smooth,domain=0.5:6.1] (x,f(x));
foreach X in a,b
- (0,f(X)) node[left] $f(X)$;
draw (a,f(a)) -- (b,f(b));
draw[dashed] (c,0) -- (c,f(c));
draw[dashed,name path=hori] (a,f(a)) -- (b,f(a));
pgfmathsetmacroslopeangleatan2(f(b)-f(a),b-a)
draw[red,name path=sloped] (c,f(c)) +(slopeangle:2) -- ++ (slopeangle+180:4);
draw (a,f(a)) + (1,0) arc(0:slopeangle:1) node[midway,right]$beta$;
draw[name intersections=of=hori and sloped,by=i] (i) +(1,0)
arc(0:slopeangle:1) node[midway,right]$beta$;
endtikzpicture
enddocument
1
I have agree with your comment :-).
– Sebastiano
6 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
add a comment |
I recommend TikZ for that. (I used to love pstricks, and the pstricks solution is really neat and I upvoted it, but having seen what TikZ can do I can no longer recommend pstricks, sorry.)
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryintersections
begindocument
begintikzpicture[declare function=f(x)=0.3*(x-3.5)^3-x+7;a=1;b=6;c=4.94;]
draw[-stealth] (-0.5,0) -- (6.5,0);
draw[-stealth] (0,-0.5) -- (0,6.5);
draw[blue] plot[smooth,domain=0.5:6.1] (x,f(x));
foreach X in a,b
- (0,f(X)) node[left] $f(X)$;
draw (a,f(a)) -- (b,f(b));
draw[dashed] (c,0) -- (c,f(c));
draw[dashed,name path=hori] (a,f(a)) -- (b,f(a));
pgfmathsetmacroslopeangleatan2(f(b)-f(a),b-a)
draw[red,name path=sloped] (c,f(c)) +(slopeangle:2) -- ++ (slopeangle+180:4);
draw (a,f(a)) + (1,0) arc(0:slopeangle:1) node[midway,right]$beta$;
draw[name intersections=of=hori and sloped,by=i] (i) +(1,0)
arc(0:slopeangle:1) node[midway,right]$beta$;
endtikzpicture
enddocument
1
I have agree with your comment :-).
– Sebastiano
6 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
add a comment |
I recommend TikZ for that. (I used to love pstricks, and the pstricks solution is really neat and I upvoted it, but having seen what TikZ can do I can no longer recommend pstricks, sorry.)
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryintersections
begindocument
begintikzpicture[declare function=f(x)=0.3*(x-3.5)^3-x+7;a=1;b=6;c=4.94;]
draw[-stealth] (-0.5,0) -- (6.5,0);
draw[-stealth] (0,-0.5) -- (0,6.5);
draw[blue] plot[smooth,domain=0.5:6.1] (x,f(x));
foreach X in a,b
- (0,f(X)) node[left] $f(X)$;
draw (a,f(a)) -- (b,f(b));
draw[dashed] (c,0) -- (c,f(c));
draw[dashed,name path=hori] (a,f(a)) -- (b,f(a));
pgfmathsetmacroslopeangleatan2(f(b)-f(a),b-a)
draw[red,name path=sloped] (c,f(c)) +(slopeangle:2) -- ++ (slopeangle+180:4);
draw (a,f(a)) + (1,0) arc(0:slopeangle:1) node[midway,right]$beta$;
draw[name intersections=of=hori and sloped,by=i] (i) +(1,0)
arc(0:slopeangle:1) node[midway,right]$beta$;
endtikzpicture
enddocument
I recommend TikZ for that. (I used to love pstricks, and the pstricks solution is really neat and I upvoted it, but having seen what TikZ can do I can no longer recommend pstricks, sorry.)
documentclass[tikz,border=3.14mm]standalone
usetikzlibraryintersections
begindocument
begintikzpicture[declare function=f(x)=0.3*(x-3.5)^3-x+7;a=1;b=6;c=4.94;]
draw[-stealth] (-0.5,0) -- (6.5,0);
draw[-stealth] (0,-0.5) -- (0,6.5);
draw[blue] plot[smooth,domain=0.5:6.1] (x,f(x));
foreach X in a,b
- (0,f(X)) node[left] $f(X)$;
draw (a,f(a)) -- (b,f(b));
draw[dashed] (c,0) -- (c,f(c));
draw[dashed,name path=hori] (a,f(a)) -- (b,f(a));
pgfmathsetmacroslopeangleatan2(f(b)-f(a),b-a)
draw[red,name path=sloped] (c,f(c)) +(slopeangle:2) -- ++ (slopeangle+180:4);
draw (a,f(a)) + (1,0) arc(0:slopeangle:1) node[midway,right]$beta$;
draw[name intersections=of=hori and sloped,by=i] (i) +(1,0)
arc(0:slopeangle:1) node[midway,right]$beta$;
endtikzpicture
enddocument
answered 6 hours ago
marmotmarmot
130k6164311
130k6164311
1
I have agree with your comment :-).
– Sebastiano
6 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
add a comment |
1
I have agree with your comment :-).
– Sebastiano
6 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
1
1
I have agree with your comment :-).
– Sebastiano
6 hours ago
I have agree with your comment :-).
– Sebastiano
6 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
@Sebastiano hello and I agree with it, too. :)
– manooooh
5 hours ago
add a comment |
Some more fun with pstricks
, which has a psPlotTangent
command:
documentclass[svgnames, x11names, border = 5pt]standalone%
usepackage[utf8]inputenc
usepackageamsmath
usepackageauto-pst-pdf%
usepackagepstricks-add%,
defFx^3-6*x^2 + 9*x + 1
begindocument
pssetunit=2cm, arrowinset=0.12, algebraic, plotstyle=curve, plotpoints=200, dimen=inner
everypsboxfootnotesize
beginpspicture*(-1,-1)(6,5.5)
psaxes[linecolor = LightSteelBlue, ticks=none, labels=none]->(0,0)(-2,-1.2)(5,5.5)[$x$,-135][$y$,-135]
psplot[linecolor = IndianRed, linewidth =1.2pt]0.054F
pssetlinestyle=dashed, linewidth=0.3pt
psCoordinates(*0.5 F)uput[d](0.5,0)$a$uput[l](0,4.125)$f(a)$)
psCoordinates(*3.5 F)uput[d](3.5,0)$b$uput[l](0,1.875)$f(b)$)
psline[linecolor=Gold, linewidth=0.6pt] (0.5, 4.125)(3.5,1.875)
psline(1.134,0)(1.134, 4.949)(3.134, 4.949)uput[d](1.134,0)$c$
psline(2.866, 0)(2.866, 1.051)(4.866,1.051)uput[d](2.866,0)$c_1$
pssetlinestyle=solid, labelsep=24pt
foreach x in 1.134, 2.866psplotTangent[algebraic, linewidth=0.6pt, Derive=3*x^2-12*x + 9, linecolor=Gold, showpoints]x1.5F
psarc(3.5, 1.875)0.4143180uput[161](3.5, 1.875)$beta$
psarcn(1.134, 4.949)0.40-37uput[-18](1.134, 4.949)$beta$
psarcn(2.866, 1.051)0.40-37uput[-18](2.866, 1.051)$beta$
rput(5,1.5)$boxedtanbeta = dfracf(b)-f(a)b-a = f'(c)$
endpspicture*
enddocument
add a comment |
Some more fun with pstricks
, which has a psPlotTangent
command:
documentclass[svgnames, x11names, border = 5pt]standalone%
usepackage[utf8]inputenc
usepackageamsmath
usepackageauto-pst-pdf%
usepackagepstricks-add%,
defFx^3-6*x^2 + 9*x + 1
begindocument
pssetunit=2cm, arrowinset=0.12, algebraic, plotstyle=curve, plotpoints=200, dimen=inner
everypsboxfootnotesize
beginpspicture*(-1,-1)(6,5.5)
psaxes[linecolor = LightSteelBlue, ticks=none, labels=none]->(0,0)(-2,-1.2)(5,5.5)[$x$,-135][$y$,-135]
psplot[linecolor = IndianRed, linewidth =1.2pt]0.054F
pssetlinestyle=dashed, linewidth=0.3pt
psCoordinates(*0.5 F)uput[d](0.5,0)$a$uput[l](0,4.125)$f(a)$)
psCoordinates(*3.5 F)uput[d](3.5,0)$b$uput[l](0,1.875)$f(b)$)
psline[linecolor=Gold, linewidth=0.6pt] (0.5, 4.125)(3.5,1.875)
psline(1.134,0)(1.134, 4.949)(3.134, 4.949)uput[d](1.134,0)$c$
psline(2.866, 0)(2.866, 1.051)(4.866,1.051)uput[d](2.866,0)$c_1$
pssetlinestyle=solid, labelsep=24pt
foreach x in 1.134, 2.866psplotTangent[algebraic, linewidth=0.6pt, Derive=3*x^2-12*x + 9, linecolor=Gold, showpoints]x1.5F
psarc(3.5, 1.875)0.4143180uput[161](3.5, 1.875)$beta$
psarcn(1.134, 4.949)0.40-37uput[-18](1.134, 4.949)$beta$
psarcn(2.866, 1.051)0.40-37uput[-18](2.866, 1.051)$beta$
rput(5,1.5)$boxedtanbeta = dfracf(b)-f(a)b-a = f'(c)$
endpspicture*
enddocument
add a comment |
Some more fun with pstricks
, which has a psPlotTangent
command:
documentclass[svgnames, x11names, border = 5pt]standalone%
usepackage[utf8]inputenc
usepackageamsmath
usepackageauto-pst-pdf%
usepackagepstricks-add%,
defFx^3-6*x^2 + 9*x + 1
begindocument
pssetunit=2cm, arrowinset=0.12, algebraic, plotstyle=curve, plotpoints=200, dimen=inner
everypsboxfootnotesize
beginpspicture*(-1,-1)(6,5.5)
psaxes[linecolor = LightSteelBlue, ticks=none, labels=none]->(0,0)(-2,-1.2)(5,5.5)[$x$,-135][$y$,-135]
psplot[linecolor = IndianRed, linewidth =1.2pt]0.054F
pssetlinestyle=dashed, linewidth=0.3pt
psCoordinates(*0.5 F)uput[d](0.5,0)$a$uput[l](0,4.125)$f(a)$)
psCoordinates(*3.5 F)uput[d](3.5,0)$b$uput[l](0,1.875)$f(b)$)
psline[linecolor=Gold, linewidth=0.6pt] (0.5, 4.125)(3.5,1.875)
psline(1.134,0)(1.134, 4.949)(3.134, 4.949)uput[d](1.134,0)$c$
psline(2.866, 0)(2.866, 1.051)(4.866,1.051)uput[d](2.866,0)$c_1$
pssetlinestyle=solid, labelsep=24pt
foreach x in 1.134, 2.866psplotTangent[algebraic, linewidth=0.6pt, Derive=3*x^2-12*x + 9, linecolor=Gold, showpoints]x1.5F
psarc(3.5, 1.875)0.4143180uput[161](3.5, 1.875)$beta$
psarcn(1.134, 4.949)0.40-37uput[-18](1.134, 4.949)$beta$
psarcn(2.866, 1.051)0.40-37uput[-18](2.866, 1.051)$beta$
rput(5,1.5)$boxedtanbeta = dfracf(b)-f(a)b-a = f'(c)$
endpspicture*
enddocument
Some more fun with pstricks
, which has a psPlotTangent
command:
documentclass[svgnames, x11names, border = 5pt]standalone%
usepackage[utf8]inputenc
usepackageamsmath
usepackageauto-pst-pdf%
usepackagepstricks-add%,
defFx^3-6*x^2 + 9*x + 1
begindocument
pssetunit=2cm, arrowinset=0.12, algebraic, plotstyle=curve, plotpoints=200, dimen=inner
everypsboxfootnotesize
beginpspicture*(-1,-1)(6,5.5)
psaxes[linecolor = LightSteelBlue, ticks=none, labels=none]->(0,0)(-2,-1.2)(5,5.5)[$x$,-135][$y$,-135]
psplot[linecolor = IndianRed, linewidth =1.2pt]0.054F
pssetlinestyle=dashed, linewidth=0.3pt
psCoordinates(*0.5 F)uput[d](0.5,0)$a$uput[l](0,4.125)$f(a)$)
psCoordinates(*3.5 F)uput[d](3.5,0)$b$uput[l](0,1.875)$f(b)$)
psline[linecolor=Gold, linewidth=0.6pt] (0.5, 4.125)(3.5,1.875)
psline(1.134,0)(1.134, 4.949)(3.134, 4.949)uput[d](1.134,0)$c$
psline(2.866, 0)(2.866, 1.051)(4.866,1.051)uput[d](2.866,0)$c_1$
pssetlinestyle=solid, labelsep=24pt
foreach x in 1.134, 2.866psplotTangent[algebraic, linewidth=0.6pt, Derive=3*x^2-12*x + 9, linecolor=Gold, showpoints]x1.5F
psarc(3.5, 1.875)0.4143180uput[161](3.5, 1.875)$beta$
psarcn(1.134, 4.949)0.40-37uput[-18](1.134, 4.949)$beta$
psarcn(2.866, 1.051)0.40-37uput[-18](2.866, 1.051)$beta$
rput(5,1.5)$boxedtanbeta = dfracf(b)-f(a)b-a = f'(c)$
endpspicture*
enddocument
answered 2 hours ago
BernardBernard
180k780212
180k780212
add a comment |
add a comment |
precelina m is a new contributor. Be nice, and check out our Code of Conduct.
precelina m is a new contributor. Be nice, and check out our Code of Conduct.
precelina m is a new contributor. Be nice, and check out our Code of Conduct.
precelina m is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f492494%2fhow-to-illustrate-the-mean-value-theorem%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown