Drawing an Inflection Point with Tikz
I am trying to draw a point of inflection with this program:
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [name path=curve,red,thick,-] (1) to[out=80,in=180] (2)
to[out=0,in=135] (3) to[out=315,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
This outputs: You can see a small "kink" in the graph
How can I get the plot smoother at the point P? As in
tikz-pgf
add a comment |
I am trying to draw a point of inflection with this program:
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [name path=curve,red,thick,-] (1) to[out=80,in=180] (2)
to[out=0,in=135] (3) to[out=315,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
This outputs: You can see a small "kink" in the graph
How can I get the plot smoother at the point P? As in
tikz-pgf
add a comment |
I am trying to draw a point of inflection with this program:
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [name path=curve,red,thick,-] (1) to[out=80,in=180] (2)
to[out=0,in=135] (3) to[out=315,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
This outputs: You can see a small "kink" in the graph
How can I get the plot smoother at the point P? As in
tikz-pgf
I am trying to draw a point of inflection with this program:
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [name path=curve,red,thick,-] (1) to[out=80,in=180] (2)
to[out=0,in=135] (3) to[out=315,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
This outputs: You can see a small "kink" in the graph
How can I get the plot smoother at the point P? As in
tikz-pgf
tikz-pgf
asked 1 hour ago
MathScholar
6678
6678
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Here is a minimal modification of your code using the sin
and cos
paht constructions, which are explained in section 2.12 of the pgfmanual.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,-] (1)sin (2)
cos (3) sin (4) cos (5);
draw[fill] (3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
Of course, you can also plot a function....
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
add a comment |
Just choose more accurate values for the in
and out
around the inflection point, like .. in=120] (3) to[out=300 ..
, and add some looseness
for more smoother curve.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,looseness=.8] (1) to[out=80,in=180] (2)
to[out=0,in=120] (3) to[out=300,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
add a comment |
Since you drew this curve by approximation, I show you another way to draw this same curve by approximation.
Bezier curves can be used by indicating the control points for the start and finish point (as indicated on page 140 of the manual). Here, only the starting points (1)
and arrival points (5)
are sufficient, the others are useless.
I drew the tangents used by the Bézier curve in cyan.
To place the inflection point, always by approximation, I used the decorations.markings
library.
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{center}
begin{tikzpicture}[decoration={
markings,
mark=at position .55 with fill circle (2pt) node[above right] {$P$};}]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (5) at (5.5,3.25);
draw[postaction={decorate}] (1) ..controls +(75:7) and +(-110:6)..(5);
draw[cyan,->] (1) -- +(75:7);
draw[cyan,<-] (5) -- +(-110:6);
end{tikzpicture}
end{center}
end{document}
1
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
1
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
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
});
}
});
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%2f468301%2fdrawing-an-inflection-point-with-tikz%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
Here is a minimal modification of your code using the sin
and cos
paht constructions, which are explained in section 2.12 of the pgfmanual.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,-] (1)sin (2)
cos (3) sin (4) cos (5);
draw[fill] (3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
Of course, you can also plot a function....
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
add a comment |
Here is a minimal modification of your code using the sin
and cos
paht constructions, which are explained in section 2.12 of the pgfmanual.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,-] (1)sin (2)
cos (3) sin (4) cos (5);
draw[fill] (3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
Of course, you can also plot a function....
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
add a comment |
Here is a minimal modification of your code using the sin
and cos
paht constructions, which are explained in section 2.12 of the pgfmanual.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,-] (1)sin (2)
cos (3) sin (4) cos (5);
draw[fill] (3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
Of course, you can also plot a function....
Here is a minimal modification of your code using the sin
and cos
paht constructions, which are explained in section 2.12 of the pgfmanual.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,-] (1)sin (2)
cos (3) sin (4) cos (5);
draw[fill] (3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
Of course, you can also plot a function....
answered 1 hour ago
marmot
87.9k4101189
87.9k4101189
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
add a comment |
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
yes I thought about a function but chose this way and then had the problem. I will read the manual where you indicated. It works for me.
– MathScholar
1 hour ago
add a comment |
Just choose more accurate values for the in
and out
around the inflection point, like .. in=120] (3) to[out=300 ..
, and add some looseness
for more smoother curve.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,looseness=.8] (1) to[out=80,in=180] (2)
to[out=0,in=120] (3) to[out=300,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
add a comment |
Just choose more accurate values for the in
and out
around the inflection point, like .. in=120] (3) to[out=300 ..
, and add some looseness
for more smoother curve.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,looseness=.8] (1) to[out=80,in=180] (2)
to[out=0,in=120] (3) to[out=300,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
add a comment |
Just choose more accurate values for the in
and out
around the inflection point, like .. in=120] (3) to[out=300 ..
, and add some looseness
for more smoother curve.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,looseness=.8] (1) to[out=80,in=180] (2)
to[out=0,in=120] (3) to[out=300,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
Just choose more accurate values for the in
and out
around the inflection point, like .. in=120] (3) to[out=300 ..
, and add some looseness
for more smoother curve.
documentclass{article}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=1]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (2) at (1.5,4.5);
coordinate (3) at (3,3);
coordinate (4) at (4.5,1.5);
coordinate (5) at (5.5,3.25);
draw [red,thick,looseness=.8] (1) to[out=80,in=180] (2)
to[out=0,in=120] (3) to[out=300,in=180] (4) to[out=0,in=260] (5);
draw[fill] (3,3) circle (2pt) node[above right] {$P$};
end{tikzpicture}
end{center}
end{document}
edited 36 mins ago
answered 40 mins ago
AboAmmar
33.1k22882
33.1k22882
add a comment |
add a comment |
Since you drew this curve by approximation, I show you another way to draw this same curve by approximation.
Bezier curves can be used by indicating the control points for the start and finish point (as indicated on page 140 of the manual). Here, only the starting points (1)
and arrival points (5)
are sufficient, the others are useless.
I drew the tangents used by the Bézier curve in cyan.
To place the inflection point, always by approximation, I used the decorations.markings
library.
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{center}
begin{tikzpicture}[decoration={
markings,
mark=at position .55 with fill circle (2pt) node[above right] {$P$};}]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (5) at (5.5,3.25);
draw[postaction={decorate}] (1) ..controls +(75:7) and +(-110:6)..(5);
draw[cyan,->] (1) -- +(75:7);
draw[cyan,<-] (5) -- +(-110:6);
end{tikzpicture}
end{center}
end{document}
1
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
1
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
add a comment |
Since you drew this curve by approximation, I show you another way to draw this same curve by approximation.
Bezier curves can be used by indicating the control points for the start and finish point (as indicated on page 140 of the manual). Here, only the starting points (1)
and arrival points (5)
are sufficient, the others are useless.
I drew the tangents used by the Bézier curve in cyan.
To place the inflection point, always by approximation, I used the decorations.markings
library.
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{center}
begin{tikzpicture}[decoration={
markings,
mark=at position .55 with fill circle (2pt) node[above right] {$P$};}]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (5) at (5.5,3.25);
draw[postaction={decorate}] (1) ..controls +(75:7) and +(-110:6)..(5);
draw[cyan,->] (1) -- +(75:7);
draw[cyan,<-] (5) -- +(-110:6);
end{tikzpicture}
end{center}
end{document}
1
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
1
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
add a comment |
Since you drew this curve by approximation, I show you another way to draw this same curve by approximation.
Bezier curves can be used by indicating the control points for the start and finish point (as indicated on page 140 of the manual). Here, only the starting points (1)
and arrival points (5)
are sufficient, the others are useless.
I drew the tangents used by the Bézier curve in cyan.
To place the inflection point, always by approximation, I used the decorations.markings
library.
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{center}
begin{tikzpicture}[decoration={
markings,
mark=at position .55 with fill circle (2pt) node[above right] {$P$};}]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (5) at (5.5,3.25);
draw[postaction={decorate}] (1) ..controls +(75:7) and +(-110:6)..(5);
draw[cyan,->] (1) -- +(75:7);
draw[cyan,<-] (5) -- +(-110:6);
end{tikzpicture}
end{center}
end{document}
Since you drew this curve by approximation, I show you another way to draw this same curve by approximation.
Bezier curves can be used by indicating the control points for the start and finish point (as indicated on page 140 of the manual). Here, only the starting points (1)
and arrival points (5)
are sufficient, the others are useless.
I drew the tangents used by the Bézier curve in cyan.
To place the inflection point, always by approximation, I used the decorations.markings
library.
documentclass{article}
usepackage{tikz}
usetikzlibrary{decorations.markings}
begin{document}
begin{center}
begin{tikzpicture}[decoration={
markings,
mark=at position .55 with fill circle (2pt) node[above right] {$P$};}]
draw[->] (-.5,0)--(6,0) node[below] {$x$};
draw[->] (0,-.5)--(0,6) node[left] {$y$};
coordinate (1) at (.5,2.75);
coordinate (5) at (5.5,3.25);
draw[postaction={decorate}] (1) ..controls +(75:7) and +(-110:6)..(5);
draw[cyan,->] (1) -- +(75:7);
draw[cyan,<-] (5) -- +(-110:6);
end{tikzpicture}
end{center}
end{document}
answered 24 mins ago
AndréC
7,66511440
7,66511440
1
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
1
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
add a comment |
1
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
1
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
1
1
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
All of you have been great for giving a good answer to the user's question. My most sincere appreciation.
– Sebastiano
20 mins ago
1
1
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
Thank you very much, I always try to be as simple and clear as possible, professional deformation obliges me :-)
– AndréC
14 mins ago
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f468301%2fdrawing-an-inflection-point-with-tikz%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