log('The equation is not quadratic');
    } else {
        // Calculate and Display the results
        $helper->log('
Roots:
');
        $discriminantFormula = '=POWER(' . $_POST['B'] . ',2) - (4 * ' . $_POST['A'] . ' * ' . $_POST['C'] . ')';
        $discriminant = Calculation::getInstance()->calculateFormula($discriminantFormula);
        $r1Formula = '=IMDIV(IMSUM(-' . $_POST['B'] . ',IMSQRT(' . $discriminant . ')),2 * ' . $_POST['A'] . ')';
        $r2Formula = '=IF(' . $discriminant . '=0,"Only one root",IMDIV(IMSUB(-' . $_POST['B'] . ',IMSQRT(' . $discriminant . ')),2 * ' . $_POST['A'] . '))';
        $helper->log(Calculation::getInstance()->calculateFormula($r1Formula));
        $helper->log(Calculation::getInstance()->calculateFormula($r2Formula));
        $callEndTime = microtime(true);
        $helper->logEndingNotes();
    }
}