If you submit this to WA
and expand the Minimal Forms, it shows the Boole Normalform.
How is this normal form called in literature, because simply googling "Boole Normal form" is not giving me satisfying results and how to calculate this in mathematica directly?

BooleanConvert, e.g.,Table[{fm, BooleanConvert[(a && b && c) || (! a && ! b && ! c) || (! a && b && ! c) || (a && ! b && ! c), fm]}, {fm, {"DNF", "CNF", "AND", "OR", "NAND", "NOR", "ESOP", "ANF", "BDT", "ITE"}}] // Grid– Bob Hanlon Feb 20 '20 at 15:38