Good day,
Usually, proofs by contradictions are the easier, and sometimes, even the only ones available. However, there are cases where the easiest proof is not the proof by contradiction. For example, the one below:
From the definition of the rational numbers, all of them can be expressed as quotients of two integers. And from this, logically all rationals quotients as well, because:
$$ \forall a\ \forall b\ \forall c\ \forall d:\{a;b;c;d\}\subset\mathbb Z\setminus\{0\}\\ \left\{\frac a b;\frac c d\right\}\subset\mathbb Q;\ \frac{\ \frac a b\ }{\ \frac c d\ }= \frac{\frac a b\times bd}{\frac c d\times bd}= \frac{ad}{bc}\in \mathbb Q $$
or more generally (and that in fact makes the proof almost superfluous as division is a multiplication and multiplication is commutative) for $m$ fractions:
$$ \forall a\ \forall b:\{a;b\}\subset\mathbb Z\setminus\{0\}\\ \bigcup_ {n=1}^m\left\{\frac {a_n} {b_n}\right\}\subset\mathbb Q;\ \prod_{n=1}^m \frac {a_n} {b_n}= \frac {\prod_{n=1}^m a_n} {\prod_{n=1}^m b_n} \in \mathbb Q $$ (end example)
When I say proof by contradiction, I mean the false statement you assume in order to cause the contradiction must be fundamental to the proof, in such a way that if you remove it, there is no proof. Can such a proof always be found for any proven theorem/conjecture/formula?
There are many directions a proof can take.
Some proofs start with the conclusion, and each new step is a reverse implication until you reach "true".
Some proofs start with the assumptions (or "true"), and each new step is an implication until you reach the conclusion.
A proof by contradiction starts with the negation of the assumption, and each new step is an implication until you reach "false". Logically speaking, you can always convert a proof by contradiction into a direction proof of the first type using demorgan's transforms.
Proof by contradiction: $$ \lnot conclusion \rightarrow false $$ is equivalent to to $$ conclusion \leftarrow true $$ and any intermediate steps $$ a \rightarrow b$$ may be converted to $$ \lnot a \leftarrow \lnot b $$
...unless of course, you are working with a very limited set of rules of inferences that don't admit both type of proofs.