I have 3 points that I must adjust to the following formula:
$$ C = a' \cdot (1-e^{\alpha \cdot t})$$
The magnitudes I know are $C$ and $t$, and I have to obtain $a'$ and $\alpha$.
I know that usually this is done by using a variable change to transform the exponential to a linear function, but I cannot figure out how.
Some example points could be:
t C
--------
4, 6
8, 9.5
20, 10
Any guidance on how to obtain $a'$ and $\alpha$ are appreciated.
You have 3 points, and only 2 parameters. Unless you are so lucky that they agree, you'll have to set up e.g. a least squares fit:
$\begin{align} E(a', \alpha) = \sum_i \left( C_i - a' (1 - \mathrm{e}^{\alpha t_i}) \right)^2 \end{align}$
and find $a', \alpha$ that minimizes this. For that you'll have to look for some numerical method.