How to graph a logistic equation using tikz
up vote
3
down vote
favorite
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 |
up vote
3
down vote
favorite
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 |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
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 1 hour ago
asked 1 hour ago
Garth Fleming
36718
36718
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
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}
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
add a comment |
up vote
3
down vote
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 |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
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}
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
add a comment |
up vote
4
down vote
accepted
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}
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
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 57 mins ago
nidhin
2,769926
2,769926
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
add a comment |
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
Thank you so much...this works great. I had fun reproducing the math as well.
– Garth Fleming
28 mins ago
add a comment |
up vote
3
down vote
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 |
up vote
3
down vote
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 |
up vote
3
down vote
up vote
3
down vote
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 12 mins ago
answered 39 mins ago
Herbert
267k23406716
267k23406716
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