Tikz picture of two mathematical functionsRemove asymptote of a functionPgfplots : can't plot some usual mathematical functionsHow can I create new commands in TikZ?Mathematical symbols as keywords in listingSpan TikZ Picture Across Two ColumnsWolfram Mathematica Functions in LyxPGF Contour Plot with complicated (nested) functionspgfplots wrongly calculate pgfplots@data@xmin in the case of mixed plots (with and without error bar)Tikz picture: Volume between two surfacesFill between two functionsTikz picture using two “foreach” loops

How do I change two letters closest to a string and one letter immediately after a string using Notepad++?

How to pronounce "I ♥ Huckabees"?

Why no Iridium-level flares from other satellites?

How are passwords stolen from companies if they only store hashes?

My adviser wants to be the first author

"of which" is correct here?

Math equation in non italic font

Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?

Why does overlay work only on the first tcolorbox?

Why did it take so long to abandon sail after steamships were demonstrated?

Simplify an interface for flexibly applying rules to periods of time

Do I need to be arrogant to get ahead?

Why one should not leave fingerprints on bulbs and plugs?

Recruiter wants very extensive technical details about all of my previous work

Bacteria contamination inside a thermos bottle

How do I hide Chekhov's Gun?

Is there a place to find the pricing for things not mentioned in the PHB? (non-magical)

What is the significance behind "40 days" that often appears in the Bible?

How to terminate ping <dest> &

Brexit - No Deal Rejection

Are Roman Catholic priests ever addressed as pastor

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

Do I need life insurance if I can cover my own funeral costs?

Is it normal that my co-workers at a fitness company criticize my food choices?



Tikz picture of two mathematical functions


Remove asymptote of a functionPgfplots : can't plot some usual mathematical functionsHow can I create new commands in TikZ?Mathematical symbols as keywords in listingSpan TikZ Picture Across Two ColumnsWolfram Mathematica Functions in LyxPGF Contour Plot with complicated (nested) functionspgfplots wrongly calculate pgfplots@data@xmin in the case of mixed plots (with and without error bar)Tikz picture: Volume between two surfacesFill between two functionsTikz picture using two “foreach” loops













1















I'm trying to draw the functions y=(0.05*0.4+0.1*2*x)/(0.05+0.1*2) and x=-0.1/(2*10*(y - 0.1))+y, by using tikz as follows



begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$, ylabel=$s$]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture


I obtained the picture:



enter image description here



But I'm not sure about the result (tikz seems to have drawn also the asymptote of second function). For me (and Mathematica) the result should be instead the following:



enter image description here



Can anybody tell me what's wrong with this picture and my tikz code?










share|improve this question

















  • 1





    Add appropriate curly brackets: addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2)); addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);.

    – marmot
    5 hours ago















1















I'm trying to draw the functions y=(0.05*0.4+0.1*2*x)/(0.05+0.1*2) and x=-0.1/(2*10*(y - 0.1))+y, by using tikz as follows



begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$, ylabel=$s$]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture


I obtained the picture:



enter image description here



But I'm not sure about the result (tikz seems to have drawn also the asymptote of second function). For me (and Mathematica) the result should be instead the following:



enter image description here



Can anybody tell me what's wrong with this picture and my tikz code?










share|improve this question

















  • 1





    Add appropriate curly brackets: addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2)); addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);.

    – marmot
    5 hours ago













1












1








1


0






I'm trying to draw the functions y=(0.05*0.4+0.1*2*x)/(0.05+0.1*2) and x=-0.1/(2*10*(y - 0.1))+y, by using tikz as follows



begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$, ylabel=$s$]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture


I obtained the picture:



enter image description here



But I'm not sure about the result (tikz seems to have drawn also the asymptote of second function). For me (and Mathematica) the result should be instead the following:



enter image description here



Can anybody tell me what's wrong with this picture and my tikz code?










share|improve this question














I'm trying to draw the functions y=(0.05*0.4+0.1*2*x)/(0.05+0.1*2) and x=-0.1/(2*10*(y - 0.1))+y, by using tikz as follows



begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$, ylabel=$s$]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture


I obtained the picture:



enter image description here



But I'm not sure about the result (tikz seems to have drawn also the asymptote of second function). For me (and Mathematica) the result should be instead the following:



enter image description here



Can anybody tell me what's wrong with this picture and my tikz code?







tikz-pgf wolfram-mathematica






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 5 hours ago









MarkMark

20216




20216







  • 1





    Add appropriate curly brackets: addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2)); addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);.

    – marmot
    5 hours ago












  • 1





    Add appropriate curly brackets: addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2)); addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);.

    – marmot
    5 hours ago







1




1





Add appropriate curly brackets: addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2)); addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);.

– marmot
5 hours ago





Add appropriate curly brackets: addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2)); addplot[red, ultra thick] (-0.1/(2*10*(x - 0.1))+x,x);.

– marmot
5 hours ago










1 Answer
1






active

oldest

votes


















6














The TikZ/pgfplots parser gets confused about the brackets, it does not know which of them are delimiters of coordinates or expressions in the functions. So you have to help them a bit by adding curly brackets.



documentclass[tikz,border=3.14mm]standalone
usepackagepgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$,
ylabel=$s$,unbounded coords=discard]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick,domain=0:0.099] (-0.1/(2*10*(x - 0.1))+x,x);
addplot[red, ultra thick,domain=0.11:1] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture
enddocument


enter image description here






share|improve this answer

























  • Thank you! It's clear. Is there a way to remove the asymptote?

    – Mark
    4 hours ago











  • @Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

    – marmot
    1 hour ago










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
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479823%2ftikz-picture-of-two-mathematical-functions%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









6














The TikZ/pgfplots parser gets confused about the brackets, it does not know which of them are delimiters of coordinates or expressions in the functions. So you have to help them a bit by adding curly brackets.



documentclass[tikz,border=3.14mm]standalone
usepackagepgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$,
ylabel=$s$,unbounded coords=discard]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick,domain=0:0.099] (-0.1/(2*10*(x - 0.1))+x,x);
addplot[red, ultra thick,domain=0.11:1] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture
enddocument


enter image description here






share|improve this answer

























  • Thank you! It's clear. Is there a way to remove the asymptote?

    – Mark
    4 hours ago











  • @Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

    – marmot
    1 hour ago















6














The TikZ/pgfplots parser gets confused about the brackets, it does not know which of them are delimiters of coordinates or expressions in the functions. So you have to help them a bit by adding curly brackets.



documentclass[tikz,border=3.14mm]standalone
usepackagepgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$,
ylabel=$s$,unbounded coords=discard]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick,domain=0:0.099] (-0.1/(2*10*(x - 0.1))+x,x);
addplot[red, ultra thick,domain=0.11:1] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture
enddocument


enter image description here






share|improve this answer

























  • Thank you! It's clear. Is there a way to remove the asymptote?

    – Mark
    4 hours ago











  • @Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

    – marmot
    1 hour ago













6












6








6







The TikZ/pgfplots parser gets confused about the brackets, it does not know which of them are delimiters of coordinates or expressions in the functions. So you have to help them a bit by adding curly brackets.



documentclass[tikz,border=3.14mm]standalone
usepackagepgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$,
ylabel=$s$,unbounded coords=discard]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick,domain=0:0.099] (-0.1/(2*10*(x - 0.1))+x,x);
addplot[red, ultra thick,domain=0.11:1] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture
enddocument


enter image description here






share|improve this answer















The TikZ/pgfplots parser gets confused about the brackets, it does not know which of them are delimiters of coordinates or expressions in the functions. So you have to help them a bit by adding curly brackets.



documentclass[tikz,border=3.14mm]standalone
usepackagepgfplots
pgfplotssetcompat=1.16
begindocument
begintikzpicture
beginaxis[xmin=0,xmax=1,ymin=0,ymax=1, samples=1000, xlabel=$c$,
ylabel=$s$,unbounded coords=discard]
addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));
addplot[red, ultra thick,domain=0:0.099] (-0.1/(2*10*(x - 0.1))+x,x);
addplot[red, ultra thick,domain=0.11:1] (-0.1/(2*10*(x - 0.1))+x,x);
endaxis
endtikzpicture
enddocument


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited 1 hour ago

























answered 5 hours ago









marmotmarmot

109k5133252




109k5133252












  • Thank you! It's clear. Is there a way to remove the asymptote?

    – Mark
    4 hours ago











  • @Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

    – marmot
    1 hour ago

















  • Thank you! It's clear. Is there a way to remove the asymptote?

    – Mark
    4 hours ago











  • @Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

    – marmot
    1 hour ago
















Thank you! It's clear. Is there a way to remove the asymptote?

– Mark
4 hours ago





Thank you! It's clear. Is there a way to remove the asymptote?

– Mark
4 hours ago













@Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

– marmot
1 hour ago





@Mark Sure. (Sorry, was offline.) I removed the red asymptote. If you want to remove the blue one as well, remove addplot[blue, ultra thick] (x,(0.05*0.4+0.1*2*x)/(0.05+0.1*2));. The red one was because you plotted over a singularity at x=0.1, and one easy way to remove it is to add two separate plots that avoid it.

– marmot
1 hour ago

















draft saved

draft discarded
















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f479823%2ftikz-picture-of-two-mathematical-functions%23new-answer', 'question_page');

);

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







Popular posts from this blog

Are there any AGPL-style licences that require source code modifications to be public? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Force derivative works to be publicAre there any GPL like licenses for Apple App Store?Do you violate the GPL if you provide source code that cannot be compiled?GPL - is it distribution to use libraries in an appliance loaned to customers?Distributing App for free which uses GPL'ed codeModifications of server software under GPL, with web/CLI interfaceDoes using an AGPLv3-licensed library prevent me from dual-licensing my own source code?Can I publish only select code under GPLv3 from a private project?Is there published precedent regarding the scope of covered work that uses AGPL software?If MIT licensed code links to GPL licensed code what should be the license of the resulting binary program?If I use a public API endpoint that has its source code licensed under AGPL in my app, do I need to disclose my source?

2013 GY136 Descoberta | Órbita | Referências Menu de navegação«List Of Centaurs and Scattered-Disk Objects»«List of Known Trans-Neptunian Objects»

Button changing it's text & action. Good or terrible? The 2019 Stack Overflow Developer Survey Results Are Inchanging text on user mouseoverShould certain functions be “hard to find” for powerusers to discover?Custom liking function - do I need user login?Using different checkbox style for different checkbox behaviorBest Practices: Save and Exit in Software UIInteraction with remote validated formMore efficient UI to progress the user through a complicated process?Designing a popup notice for a gameShould bulk-editing functions be hidden until a table row is selected, or is there a better solution?Is it bad practice to disable (replace) the context menu?