import Exercice from '../Exercice.js'
import {
randint,
choice,
texFraction,
lettreDepuisChiffre,
listeQuestionsToContenuSansNumero,
combinaisonListes
} from '../../modules/outils.js'
import {
setReponse
} from '../../modules/gestionInteractif.js'
import {
ajouteChampTexteMathLive
} from '../../modules/interactif/questionMathLive.js'
import {
context
} from '../../modules/context.js'
export const titre = 'Factoriser a²-b²'
export const interactifReady = true
export const interactifType = 'mathLive'
// FIX ME
// On a saisi les produits dans les 2 ordres en attendant d'avoir un outil de calcul formel
/**
* Factoriser a²-b²
* @author Jean-Claude Lhote,
* Ajout Mélange des questions Matthieu Devillers
* 3L12
*/
export const uuid = '81fd2'
export const ref = '3L12'
export default function FactoriserIdentitesRemarquables3 () {
'use strict'
Exercice.call(this) // Héritage de la classe Exercice()
this.titre = titre
this.correctionDetailleeDisponible = false
context.isHtml ? (this.spacingCorr = 3) : (this.spacingCorr = 2)
if (!context.isHtml) {
this.correctionDetaillee = false
}
this.nbCols = 1
this.nbColsCorr = 1
this.spacing = 1
this.spacingCorr = 1
this.nbQuestions = 4
this.sup = 4
this.tailleDiaporama = 3
this.nouvelleVersion = function () {
this.consigne = this.nbQuestions > 1 ? 'Factoriser les expressions suivantes.' : 'Factoriser l\'expression suivante.'
this.sup = parseInt(this.sup)
this.listeQuestions = [] // Liste de questions
this.listeCorrections = [] // Liste de questions corrigées
const Fractions = [
[1, 2],
[1, 3],
[2, 3],
[1, 4],
[3, 4],
[1, 5],
[2, 5],
[3, 5],
[4, 5],
[1, 6],
[5, 6],
[1, 7],
[2, 7],
[3, 7],
[4, 7],
[5, 7],
[6, 7],
[1, 8],
[3, 8],
[5, 8],
[7, 8],
[1, 9],
[2, 9],
[3, 10],
[7, 10],
[9, 10],
[4, 9],
[5, 9],
[7, 9],
[8, 9],
[1, 10]
]
let typesDeQuestionsDisponibles = []
if (this.sup === 1) {
typesDeQuestionsDisponibles = [1] // coef de x = 1
} else if (this.sup === 2) {
typesDeQuestionsDisponibles = [2] // coef de x > 1
} else if (this.sup === 3) {
typesDeQuestionsDisponibles = [3] // coef de x négatif
} else {
typesDeQuestionsDisponibles = [1, 2, 3]
} // mélange des questions
const listeTypeDeQuestions = combinaisonListes(typesDeQuestionsDisponibles, this.nbQuestions)
for (let i = 0, texte, texteCorr, reponse, cpt = 0, a, b, ns, ds, typesDeQuestions, fraction = []; i < this.nbQuestions && cpt < 50;) {
typesDeQuestions = listeTypeDeQuestions[i]
a = randint(1, 9)
b = randint(2, 9)
fraction = choice(Fractions)
ns = fraction[0]
ds = fraction[1]
texteCorr = ''
switch (typesDeQuestions) {
case 1:
texte = `$${lettreDepuisChiffre(i + 1)} = x^2-${a * a}$` // (x-a)(x+a)
texteCorr = `$${lettreDepuisChiffre(i + 1)} = x^2-${a * a}=x^2-${a}^2=(x-${a})(x+${a})$`
reponse = [`(x-${a})(x+${a})`, `(x+${a})(x-${a})`]
break
case 2:
texte = `$${lettreDepuisChiffre(i + 1)} = ${b * b}x^2-${a * a}$` // b>1
texteCorr = `$${lettreDepuisChiffre(i + 1)} = ${b * b}x^2-${a * a}=(${b}x)^2-${a}^2=(${b}x-${a})(${b}x+${a})$`
reponse = [`(${b}x-${a})(${b}x+${a})`, `(${b}x+${a})(${b}x-${a})`]
break
case 3:
texte = `$${lettreDepuisChiffre(i + 1)} = ${texFraction(ns * ns, ds * ds)}x^2-${a * a}$` // b>1
texteCorr = `$${lettreDepuisChiffre(i + 1)} = ${texFraction(ns * ns, ds * ds)}x^2-${a * a}=\\left(${texFraction(ns, ds)}x\\right)^2-${a}^2=\\left(${texFraction(ns, ds)}x-${a}\\right)\\left(${texFraction(ns, ds)}x+${a}\\right)$`
reponse = [`\\left(${texFraction(ns, ds)}x-${a}\\right)\\left(${texFraction(ns, ds)}x+${a}\\right)`, `\\left(${texFraction(ns, ds)}x+${a}\\right)\\left(${texFraction(ns, ds)}x-${a}\\right)`]
break
}
texte += ajouteChampTexteMathLive(this, i)
setReponse(this, i, reponse)
if (this.listeQuestions.indexOf(texte) === -1) {
// Si la question n'a jamais été posée, on en créé une autre
this.listeQuestions.push(texte)
this.listeCorrections.push(texteCorr)
i++
}
cpt++
}
listeQuestionsToContenuSansNumero(this)
}
this.besoinFormulaireNumerique = ['Niveau de difficulté', 4, ' 1 : Coefficient de x égal à 1\n 2 : Coefficient de x supérieur à 1\n 3 : Coefficient de x rationnel\n 4 : Mélange des cas précédents']
}