How to graph a logistic equation using tikz
I am not sure why this doesn't work. At first I thought the issue was x values close to zero. So I broke it up into two separate graphs that ignored x values close to zero. I have tried copying code snippets form others. Theirs works (using different function to graph), but mine does not.
The error I get is:! PGF Math Error: p' or
p(' in {2500*exp(0.05*-10.0)/(100+25*(exp(0.05*-10.0)-1))}')
documentclass{standalone}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=1000] plot (x,{2500*exp(0.05*x)/(100+25*(exp(0.05*x)-1))});
end{tikzpicture}
end{center}
tikz-pgf
add a comment |
I am not sure why this doesn't work. At first I thought the issue was x values close to zero. So I broke it up into two separate graphs that ignored x values close to zero. I have tried copying code snippets form others. Theirs works (using different function to graph), but mine does not.
The error I get is:! PGF Math Error: p' or
p(' in {2500*exp(0.05*-10.0)/(100+25*(exp(0.05*-10.0)-1))}')
documentclass{standalone}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=1000] plot (x,{2500*exp(0.05*x)/(100+25*(exp(0.05*x)-1))});
end{tikzpicture}
end{center}
tikz-pgf
add a comment |
I am not sure why this doesn't work. At first I thought the issue was x values close to zero. So I broke it up into two separate graphs that ignored x values close to zero. I have tried copying code snippets form others. Theirs works (using different function to graph), but mine does not.
The error I get is:! PGF Math Error: p' or
p(' in {2500*exp(0.05*-10.0)/(100+25*(exp(0.05*-10.0)-1))}')
documentclass{standalone}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=1000] plot (x,{2500*exp(0.05*x)/(100+25*(exp(0.05*x)-1))});
end{tikzpicture}
end{center}
tikz-pgf
I am not sure why this doesn't work. At first I thought the issue was x values close to zero. So I broke it up into two separate graphs that ignored x values close to zero. I have tried copying code snippets form others. Theirs works (using different function to graph), but mine does not.
The error I get is:! PGF Math Error: p' or
p(' in {2500*exp(0.05*-10.0)/(100+25*(exp(0.05*-10.0)-1))}')
documentclass{standalone}
usepackage{tikz}
begin{document}
begin{center}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=1000] plot (x,{2500*exp(0.05*x)/(100+25*(exp(0.05*x)-1))});
end{tikzpicture}
end{center}
tikz-pgf
tikz-pgf
edited Dec 11 '18 at 6:30
asked Dec 11 '18 at 6:12
Garth Fleming
37218
37218
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
It is because the dimension is too large to plot. A work around is to rewrite the function to be plotted in a way that it won't cause dimension too large error.
documentclass[border=3mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=100] plot (x,{100/(1+3*(exp(-0.05*x))});
end{tikzpicture}
end{document}
1
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
add a comment |
For comparism purpose. Run with xelatex
documentclass[pstricks]{standalone}
usepackage{pst-plot}
begin{document}
begin{psgraph}[Dx=25,Dy=25,llx=-0.5,lly=-0.5,
urx=0.5,ury=0.5,xAxisLabel=$x$,
yAxisLabel=$y$]{->}(0,0)(-15,-10)(160,110){10cm}{8cm}
psplot[plotpoints=1000,algebraic,linewidth=1.5pt,
linecolor=blue]{-10}{160}{2500*Euler^(0.05*x)/(100+25*(Euler^(0.05*x)-1))}
end{psgraph}
end{document}
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%2f464260%2fhow-to-graph-a-logistic-equation-using-tikz%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
It is because the dimension is too large to plot. A work around is to rewrite the function to be plotted in a way that it won't cause dimension too large error.
documentclass[border=3mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=100] plot (x,{100/(1+3*(exp(-0.05*x))});
end{tikzpicture}
end{document}
1
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
add a comment |
It is because the dimension is too large to plot. A work around is to rewrite the function to be plotted in a way that it won't cause dimension too large error.
documentclass[border=3mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=100] plot (x,{100/(1+3*(exp(-0.05*x))});
end{tikzpicture}
end{document}
1
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
add a comment |
It is because the dimension is too large to plot. A work around is to rewrite the function to be plotted in a way that it won't cause dimension too large error.
documentclass[border=3mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=100] plot (x,{100/(1+3*(exp(-0.05*x))});
end{tikzpicture}
end{document}
It is because the dimension is too large to plot. A work around is to rewrite the function to be plotted in a way that it won't cause dimension too large error.
documentclass[border=3mm]{standalone}
usepackage{tikz}
begin{document}
begin{tikzpicture}[scale=0.1]
draw [<->,very thick] (0,-10) -- (0,100) node [above] {$y$};
draw [<->,very thick] (-10,0) -- (160,0) node [right] {$x$};
draw [domain=-10:160,samples=100] plot (x,{100/(1+3*(exp(-0.05*x))});
end{tikzpicture}
end{document}
answered Dec 11 '18 at 6:34
nidhin
3,342927
3,342927
1
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
add a comment |
1
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
1
1
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
Dec 11 '18 at 7:03
add a comment |
For comparism purpose. Run with xelatex
documentclass[pstricks]{standalone}
usepackage{pst-plot}
begin{document}
begin{psgraph}[Dx=25,Dy=25,llx=-0.5,lly=-0.5,
urx=0.5,ury=0.5,xAxisLabel=$x$,
yAxisLabel=$y$]{->}(0,0)(-15,-10)(160,110){10cm}{8cm}
psplot[plotpoints=1000,algebraic,linewidth=1.5pt,
linecolor=blue]{-10}{160}{2500*Euler^(0.05*x)/(100+25*(Euler^(0.05*x)-1))}
end{psgraph}
end{document}
add a comment |
For comparism purpose. Run with xelatex
documentclass[pstricks]{standalone}
usepackage{pst-plot}
begin{document}
begin{psgraph}[Dx=25,Dy=25,llx=-0.5,lly=-0.5,
urx=0.5,ury=0.5,xAxisLabel=$x$,
yAxisLabel=$y$]{->}(0,0)(-15,-10)(160,110){10cm}{8cm}
psplot[plotpoints=1000,algebraic,linewidth=1.5pt,
linecolor=blue]{-10}{160}{2500*Euler^(0.05*x)/(100+25*(Euler^(0.05*x)-1))}
end{psgraph}
end{document}
add a comment |
For comparism purpose. Run with xelatex
documentclass[pstricks]{standalone}
usepackage{pst-plot}
begin{document}
begin{psgraph}[Dx=25,Dy=25,llx=-0.5,lly=-0.5,
urx=0.5,ury=0.5,xAxisLabel=$x$,
yAxisLabel=$y$]{->}(0,0)(-15,-10)(160,110){10cm}{8cm}
psplot[plotpoints=1000,algebraic,linewidth=1.5pt,
linecolor=blue]{-10}{160}{2500*Euler^(0.05*x)/(100+25*(Euler^(0.05*x)-1))}
end{psgraph}
end{document}
For comparism purpose. Run with xelatex
documentclass[pstricks]{standalone}
usepackage{pst-plot}
begin{document}
begin{psgraph}[Dx=25,Dy=25,llx=-0.5,lly=-0.5,
urx=0.5,ury=0.5,xAxisLabel=$x$,
yAxisLabel=$y$]{->}(0,0)(-15,-10)(160,110){10cm}{8cm}
psplot[plotpoints=1000,algebraic,linewidth=1.5pt,
linecolor=blue]{-10}{160}{2500*Euler^(0.05*x)/(100+25*(Euler^(0.05*x)-1))}
end{psgraph}
end{document}
edited Dec 11 '18 at 7:19
answered Dec 11 '18 at 6:52
Herbert
270k24408717
270k24408717
add a comment |
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%2f464260%2fhow-to-graph-a-logistic-equation-using-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