The formula
$$ d+e+ac+ae+bc+be+cd+de+ade+ace+abd+abc $$
is in algebraic normal form (ANF).
That is the unique representation of our boolean function with respect to the $\mathbb F_2$-basis $\{a^ib^jc^kd^le^m\mid i,j,k,l,m\in\{0,1\}\}$ of the space of boolean functions $\mathbb F_2^5\to\mathbb F_2$.
In particular, note "$+$" is exclusive or.
I do not think the Karnaugh map is very helpful in that case, since grouping the $1$ entries in the table becomes a bit tricky, and since you have to avoid negations. In the end, it works, but it's more involved than just drawing a few rectangles and reading off the right terms.
Instead, the algebraic description above provides an easy iterative method to compute the ANF. (See also this Math.SE post.)
Basically, the ANF for our function $f$ will look like this:
$$
f(a,b,c,d,e) =
x_0+
x_aa+x_bb+x_cc+x_dd+x_ee+
x_{ab}ab+x_{ac}ac+x_{ad}ad+x_{ae}ae+x_{bc}bc+x_{bd}bd+x_{be}be+x_{cd}cd+x_{ce}ce+x_{de}de+
x_{abc}abc+x_{abd}abd+x_{abe}abe+x_{acd}acd+x_{ace}ace+x_{ade}ade+x_{bcd}bcd+x_{bce}bce+x_{bde}bde+x_{cde}cde+
x_{abcd}abcd+x_{abce}abce+x_{abde}abde+x_{acde}acde+x_{bcde}bcde+
x_{abcde}abcde
\text,
$$
and we are interested in computing the unique coefficients $x_\ast\in\{0,1\}$.
To do so, we restrict the target function $f$: Setting enough variables to zero will simplify the above formula sufficiently to fully determine another coefficient.
- To start with, we consider the "restriction" $f(0,0,0,0,0)$. By the above formula, this is just $x_0$.
- Next, we consider $f(a,0,0,0,0)=x_0+x_aa$: Since $x_0$ is already known, $x_a$ may be recovered as $f(1,0,0,0,0)+x_0$ (modulo $2$ of course). The coefficients $x_b$ through $x_e$ are computed analogously.
- For $x_{ab}$, consider $f(a,b,0,0,0)=x_0+x_aa+x_bb+x_{ab}ab$: The coefficients $x_0$, $x_a$ and $x_b$ are already known, so we can compute $x_{ab}=f(1,1,0,0,0)+x_0+x_a+x_b$. Again, $x_{ac}$ through $x_{de}$ work exactly the same.
- Repeating this procedure will eventually yield all the coefficients.
In case you just want the result without going through the process manually, note that sage provides the relevant functionality.