[Tex/LaTex] How to draw the following symbols

relation-symbolssymbols

I am trying to represent the calculus of relations, from Tarski's paper. How do I represent the following following ?
SideNote:
I did go through http://math.mit.edu/~dspivak/files/symbols-all.pdf
and https://www.rpi.edu/dept/arc/training/latex/LaTeX_symbols.pdf
and anyother document I could find.

Best Answer

The only challenging one is the fourth in the list.

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
\langle \cdot,\bullet^{-},\cup,\mathbin{{\bullet}{\breve{\phantom{\imath}}}},1\rangle
\]

\end{document}

Of course you want to make a new command for it.

enter image description here

Related Question