{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " \n", "- Se $a = b = 0 $: \n", " - se $c = 0 $ ogni $x$ è soluzione; \n", " - se $c \\neq 0 $ nessun $x$ è soluzione \n", "- Se $a = 0$:\n", " - una sola soluzione $x_1 = -c/b$\n", "- Se $a \\neq 0$:\n", " - Se $ d = b^2 -4ac \\lt 0$ : non ci sono soluzioni reali\n", " - Se $ d = 0$ : una soluzione $x_1 = -b/(2a)$\n", " - Se $ d \\gt 0$ : due soluzion1 $x_{1,2} = (-b\\pm\\sqrt{d})/(2a)$\n", " " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.12" } }, "nbformat": 4, "nbformat_minor": 4 }