A `coordinate` command ignored Announcing the arrival of Valued Associate #679: Cesar Manara ...

Is CEO the "profession" with the most psychopaths?

Google .dev domain strangely redirects to https

Printing attributes of selection in ArcPy?

How to write capital alpha?

Positioning dot before text in math mode

What does 丫 mean? 丫是什么意思?

Should a wizard buy fine inks every time he want to copy spells into his spellbook?

retrieve food groups from food item list

How can a team of shapeshifters communicate?

Simple Http Server

Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?

Co-worker has annoying ringtone

Select every other edge (they share a common vertex)

In musical terms, what properties are varied by the human voice to produce different words / syllables?

Monty Hall Problem-Probability Paradox

What is the chair depicted in Cesare Maccari's 1889 painting "Cicerone denuncia Catilina"?

Ore hitori de wa kesshite miru koto no deki nai keshiki; It's a view I could never see on my own

What initially awakened the Balrog?

Is multiple magic items in one inherently imbalanced?

Can an iPhone 7 be made to function as a NFC Tag?

GDP with Intermediate Production

Nose gear failure in single prop aircraft: belly landing or nose-gear up landing?

Connecting Mac Book Pro 2017 to 2 Projectors via USB C

Random body shuffle every night—can we still function?



A `coordinate` command ignored



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)












0















$triangle[ABC]$ is a 30-60 right triangle, and its right angle is at C. A is at the origin. A circle is inscribed in it; its center is at



O = ((sqrt(3)/4)(sqrt(3)-1), (1/4)(sqrt(3)-1))


and its radius is (1/4)(sqrt(3)-1). Leg AC is the shorter leg. The equation of the line through it is y = sqrt(3)*x. The line perpendicular to AC has slope -sqrt(3)/3, and the line through O with slope -sqrt(3)/3 intersects leg AC at



Q = (sqrt(3)*(sqrt(3)-1), 3*(sqrt(3)-1)) .


So, the command draw (O) -- (Q); should draw a radius of the circle to leg AC. On my computer, the command renders a line segment through the other leg and ridiculously long. It seems to me that the command locating point Q has been ignored.



documentclass{amsart}
usepackage{amsmath}



usepackage{tikz}
usetikzlibrary{calc,intersections}


begin{document}

noindent hspace*{fill}
begin{tikzpicture}

path (0,0) coordinate (A) ({8*1},0) coordinate (B) ({8*(1/4)},{8*sqrt(3)/4}) coordinate (C);
node[anchor=north, inner sep=0, font=footnotesize] at (0,-0.15){textit{A}};
node[anchor=north, inner sep=0, font=footnotesize] at ($(B) +(0,-0.15)$){textit{B}};
node[anchor=south, inner sep=0, font=footnotesize] at ($(C) +(0,0.15)$){textit{C}};
draw (A) -- (B) -- (C) -- cycle;
path let n1={8*(sqrt(3)/4)*(sqrt(3)-1)}, n2={8*(1/4)*(sqrt(3)-1)} in coordinate (O) at (n1,n2);
draw[fill] (O) circle (1.5pt);
draw[blue] let n1={8*(sqrt(3)-1)/4} in (O) circle (n1);


%The points of tangency are located via the Angle-Bisector Theorem.
path let n1={8*(1/2+1/4)/(1/2+sqrt(3)/2+1)} in coordinate (P) at (n1,0);
node[anchor=north, inner sep=0, font=footnotesize] at ($(P) +(0,-0.15)$){textit{P}};
draw (O) -- (P);
path let n1={8*sqrt(3)*(sqrt(3)-1)}, n2={8*3*(sqrt(3)-1)} in coordinate (Q) at (n1,n2);
draw[fill=green] (Q) circle (1.5pt);
draw[green] (O) -- (Q);


end{tikzpicture}

end{document}








share



























    0















    $triangle[ABC]$ is a 30-60 right triangle, and its right angle is at C. A is at the origin. A circle is inscribed in it; its center is at



    O = ((sqrt(3)/4)(sqrt(3)-1), (1/4)(sqrt(3)-1))


    and its radius is (1/4)(sqrt(3)-1). Leg AC is the shorter leg. The equation of the line through it is y = sqrt(3)*x. The line perpendicular to AC has slope -sqrt(3)/3, and the line through O with slope -sqrt(3)/3 intersects leg AC at



    Q = (sqrt(3)*(sqrt(3)-1), 3*(sqrt(3)-1)) .


    So, the command draw (O) -- (Q); should draw a radius of the circle to leg AC. On my computer, the command renders a line segment through the other leg and ridiculously long. It seems to me that the command locating point Q has been ignored.



    documentclass{amsart}
    usepackage{amsmath}



    usepackage{tikz}
    usetikzlibrary{calc,intersections}


    begin{document}

    noindent hspace*{fill}
    begin{tikzpicture}

    path (0,0) coordinate (A) ({8*1},0) coordinate (B) ({8*(1/4)},{8*sqrt(3)/4}) coordinate (C);
    node[anchor=north, inner sep=0, font=footnotesize] at (0,-0.15){textit{A}};
    node[anchor=north, inner sep=0, font=footnotesize] at ($(B) +(0,-0.15)$){textit{B}};
    node[anchor=south, inner sep=0, font=footnotesize] at ($(C) +(0,0.15)$){textit{C}};
    draw (A) -- (B) -- (C) -- cycle;
    path let n1={8*(sqrt(3)/4)*(sqrt(3)-1)}, n2={8*(1/4)*(sqrt(3)-1)} in coordinate (O) at (n1,n2);
    draw[fill] (O) circle (1.5pt);
    draw[blue] let n1={8*(sqrt(3)-1)/4} in (O) circle (n1);


    %The points of tangency are located via the Angle-Bisector Theorem.
    path let n1={8*(1/2+1/4)/(1/2+sqrt(3)/2+1)} in coordinate (P) at (n1,0);
    node[anchor=north, inner sep=0, font=footnotesize] at ($(P) +(0,-0.15)$){textit{P}};
    draw (O) -- (P);
    path let n1={8*sqrt(3)*(sqrt(3)-1)}, n2={8*3*(sqrt(3)-1)} in coordinate (Q) at (n1,n2);
    draw[fill=green] (Q) circle (1.5pt);
    draw[green] (O) -- (Q);


    end{tikzpicture}

    end{document}








    share

























      0












      0








      0








      $triangle[ABC]$ is a 30-60 right triangle, and its right angle is at C. A is at the origin. A circle is inscribed in it; its center is at



      O = ((sqrt(3)/4)(sqrt(3)-1), (1/4)(sqrt(3)-1))


      and its radius is (1/4)(sqrt(3)-1). Leg AC is the shorter leg. The equation of the line through it is y = sqrt(3)*x. The line perpendicular to AC has slope -sqrt(3)/3, and the line through O with slope -sqrt(3)/3 intersects leg AC at



      Q = (sqrt(3)*(sqrt(3)-1), 3*(sqrt(3)-1)) .


      So, the command draw (O) -- (Q); should draw a radius of the circle to leg AC. On my computer, the command renders a line segment through the other leg and ridiculously long. It seems to me that the command locating point Q has been ignored.



      documentclass{amsart}
      usepackage{amsmath}



      usepackage{tikz}
      usetikzlibrary{calc,intersections}


      begin{document}

      noindent hspace*{fill}
      begin{tikzpicture}

      path (0,0) coordinate (A) ({8*1},0) coordinate (B) ({8*(1/4)},{8*sqrt(3)/4}) coordinate (C);
      node[anchor=north, inner sep=0, font=footnotesize] at (0,-0.15){textit{A}};
      node[anchor=north, inner sep=0, font=footnotesize] at ($(B) +(0,-0.15)$){textit{B}};
      node[anchor=south, inner sep=0, font=footnotesize] at ($(C) +(0,0.15)$){textit{C}};
      draw (A) -- (B) -- (C) -- cycle;
      path let n1={8*(sqrt(3)/4)*(sqrt(3)-1)}, n2={8*(1/4)*(sqrt(3)-1)} in coordinate (O) at (n1,n2);
      draw[fill] (O) circle (1.5pt);
      draw[blue] let n1={8*(sqrt(3)-1)/4} in (O) circle (n1);


      %The points of tangency are located via the Angle-Bisector Theorem.
      path let n1={8*(1/2+1/4)/(1/2+sqrt(3)/2+1)} in coordinate (P) at (n1,0);
      node[anchor=north, inner sep=0, font=footnotesize] at ($(P) +(0,-0.15)$){textit{P}};
      draw (O) -- (P);
      path let n1={8*sqrt(3)*(sqrt(3)-1)}, n2={8*3*(sqrt(3)-1)} in coordinate (Q) at (n1,n2);
      draw[fill=green] (Q) circle (1.5pt);
      draw[green] (O) -- (Q);


      end{tikzpicture}

      end{document}








      share














      $triangle[ABC]$ is a 30-60 right triangle, and its right angle is at C. A is at the origin. A circle is inscribed in it; its center is at



      O = ((sqrt(3)/4)(sqrt(3)-1), (1/4)(sqrt(3)-1))


      and its radius is (1/4)(sqrt(3)-1). Leg AC is the shorter leg. The equation of the line through it is y = sqrt(3)*x. The line perpendicular to AC has slope -sqrt(3)/3, and the line through O with slope -sqrt(3)/3 intersects leg AC at



      Q = (sqrt(3)*(sqrt(3)-1), 3*(sqrt(3)-1)) .


      So, the command draw (O) -- (Q); should draw a radius of the circle to leg AC. On my computer, the command renders a line segment through the other leg and ridiculously long. It seems to me that the command locating point Q has been ignored.



      documentclass{amsart}
      usepackage{amsmath}



      usepackage{tikz}
      usetikzlibrary{calc,intersections}


      begin{document}

      noindent hspace*{fill}
      begin{tikzpicture}

      path (0,0) coordinate (A) ({8*1},0) coordinate (B) ({8*(1/4)},{8*sqrt(3)/4}) coordinate (C);
      node[anchor=north, inner sep=0, font=footnotesize] at (0,-0.15){textit{A}};
      node[anchor=north, inner sep=0, font=footnotesize] at ($(B) +(0,-0.15)$){textit{B}};
      node[anchor=south, inner sep=0, font=footnotesize] at ($(C) +(0,0.15)$){textit{C}};
      draw (A) -- (B) -- (C) -- cycle;
      path let n1={8*(sqrt(3)/4)*(sqrt(3)-1)}, n2={8*(1/4)*(sqrt(3)-1)} in coordinate (O) at (n1,n2);
      draw[fill] (O) circle (1.5pt);
      draw[blue] let n1={8*(sqrt(3)-1)/4} in (O) circle (n1);


      %The points of tangency are located via the Angle-Bisector Theorem.
      path let n1={8*(1/2+1/4)/(1/2+sqrt(3)/2+1)} in coordinate (P) at (n1,0);
      node[anchor=north, inner sep=0, font=footnotesize] at ($(P) +(0,-0.15)$){textit{P}};
      draw (O) -- (P);
      path let n1={8*sqrt(3)*(sqrt(3)-1)}, n2={8*3*(sqrt(3)-1)} in coordinate (Q) at (n1,n2);
      draw[fill=green] (Q) circle (1.5pt);
      draw[green] (O) -- (Q);


      end{tikzpicture}

      end{document}






      tikz-pgf





      share












      share










      share



      share










      asked 51 secs ago









      A gal named DesireA gal named Desire

      6731411




      6731411






















          0






          active

          oldest

          votes












          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%2f485814%2fa-coordinate-command-ignored%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          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%2f485814%2fa-coordinate-command-ignored%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

          IEEEtran - How to include ORCID in TeX/PDF with PdfLatexIs there a standard way to include ORCID in TeX /...

          Cicindela nigrior Przypisy | Menu nawigacyjneCicindela varians unicolorManual for the Identification of the...

          Glossaries-extra: Adding glossaries package to “Clas­sicTh­e­sis” template by Dr. André Miede v. 4.6 ...