122

I'm trying to write a logical syllogism in the form of ((a -> b) & (c -> a)) -> (c -> b). But I don't know how to write Logical And character. It's something like caret character (^), but not as a superscript.

Jonas Stein
  • 8,909

3 Answers3

155
$((a\implies b) \land (c\implies a)) \implies (c \implies b)$

\land and \wedge are synonymous.

egreg
  • 1,121,712
31

In case you don't like the default \wedge symbol, you can try the one provided by the mathabx package:

MathABX

EDIT: Oh the shame, not even an example? Based on egreg's solution:

\documentclass{article}

\usepackage{amsmath}
\usepackage{mathabx}

\begin{document}
% from egreg's solution
$((a \implies b) \land (c \implies a))  (c \implies  b)$
\end{document}

Note that the use of mathabx is just an aesthetic choice. Since you are writing logic, egreg's approach is the way to go, since it's more semantic.

Paulo Cereda
  • 44,220
11

use $\wedge$ or $\bigwedge$