For the record and for whom it may interest, here is a quick way to do it with MetaPost.
I've made use of MetaPost's trademark implicit linear equation solver. For example, the following line
C = whatever[A, A+right] = whatever[B, A rotatedaround (B, 75)];
tells MetaPost almost literally that C must be somewhere on the horizontal straight line starting from A and somewhere on the straight line starting from B and forming an angle of 75 degree with (BA). It is enough for it to determine exactly where C lies.
T is computed the same way:
T = whatever[B, C] = whatever[S, A rotatedaround (S, 110)];
Here is the complete code, included in a LuaLaTeX program for typesetting convenience.
\documentclass[border=2mm]{standalone}
\usepackage{luamplib, gensymb}
\mplibsetformat{metafun}
\mplibtextextlabel{enable}
\begin{document}
\begin{mplibcode}
pair A, B, C, S, T; numeric u;
u = cm; A = origin; B = 6u*dir 60; S = .75[A, B];
C = whatever[A, A+right] = whatever[B, A rotatedaround (B, 75)];
T = whatever[B, C] = whatever[S, A rotatedaround (S, 110)];
beginfig(1);
draw A--B--C--cycle;
draw S--T dashed evenly;
label.llft("$A$", A); label.top("$B$", B); label.lrt("$C$", C);
label.lft("$S$", S); label.urt("$T$", T);
anglelength := 12bp;
draw anglebetween(A--C, A--B, "$60\degree$");
draw anglebetween(B--A, B--C, "$75\degree$");
draw anglebetween(S--A, S--T, "$110\degree$");
endfig;
\end{mplibcode}
\end{document}

For those who wish to use standalone MetaPost, here is an adequate version, producing the same result.
input latexmp
setupLaTeXMP(textextlabel=enable, mode=rerun, packages="gensymb");
pair A, B, C, S, T; numeric u;
u = cm; A = origin; B = 6u*dir 60; S = .75[A, B];
C = whatever[A, A+right] = whatever[B, A rotatedaround (B, 75)];
T = whatever[B, C] = whatever[S, A rotatedaround (S, 110)];
beginfig(1);
draw A--B--C--cycle;
draw S--T dashed evenly;
label.llft("$A$", A); label.top("$B$", B); label.lrt("$C$", C);
label.lft("$S$", S); label.urt("$T$", T);
anglelength := 12bp;
draw anglebetween(A--C, A--B, "$60\degree$");
draw anglebetween(B--A, B--C, "$75\degree$");
draw anglebetween(S--A, S--T, "$110\degree$");
setbounds currentpicture to boundingbox currentpicture enlarged 2mm;
endfig;
end.
From this code, and with a Unix command line (I don't know anything about Windows!), a PDF figure can be obtained with these instructions, assuming that the code has been saved under the name mytriangle.mp:
mpost --mem=metafun mytriangle.mp
mptopdf mytriangle.1
TikZ, I would like to draw the triangle by instructingTikZto calculate vertex C so that it is a point on the horizontal line through A and so that angle ABC is 75 degrees. – Adelyn May 06 '15 at 17:50\path[name path=leg] (B)--++(-45:5cm);– Adelyn May 06 '15 at 18:16\coordinate[name intersections={of=horizontal and leg,by=C}];– Adelyn May 06 '15 at 18:16\node[circle,fill,inner sep=1.5pt,outer sep=0pt,label={right:$C$}] at (C) {C};– Adelyn May 06 '15 at 18:16TikZcould not compile it. – Adelyn May 06 '15 at 18:16\coordinate[label=225:$A$] (a) at (0,0); \coordinate[label=90:$B$] (b) at (60:6); \path[overlay,name path=horz] (a) -- ++(10,0); \path[overlay,name path=ang] (b) -- ($(b)!2!75:(a)$); \draw[name intersections={of=horz and ang,name=i}] (a) -- (b) -- (i-1) coordinate[label=-45:$C$] (c)-- cycle;– percusse May 06 '15 at 20:19\path[overlay,name path=ang] (b) -- ($(b)!2!75:(a)$);draw a line segment through b that is twice as long as the line segment between a and b? Do you not care how long it is because you just want to be sure that it intersects line "horz"? – Adelyn May 07 '15 at 01:09\draw[name intersections={of=horz and ang,name=i}] (a) -- (b) -- (i-1) coordinate[label=-45:$C$] (c)-- cycle;? – Adelyn May 07 '15 at 01:09overlaymakes sure that the bounding box is not affected by these. i-1 is the computed intersection name that is assigned automatically. – percusse May 07 '15 at 07:48[name intersections={of=horz and ang,name=i}], you are labeling as "i" the point that is the intersection of "horz" and "ang." This intersection is the point that will be labeled "C." Right? From(i-1) coordinate[label=-45:$C$], though, it seems to me, that vertex C will be put ati-1. Ifiis the label for a point, what isi - 1? This command has a cycle drawn and the last point in the cycle isc, but its coordinates are not declared in previous commands. What are its coordinates? – Adelyn May 07 '15 at 15:18i - 1instead ofi-1and got an error. – Adelyn May 07 '15 at 15:20