import Exercice from '../Exercice.js'
import { context } from '../../modules/context.js'
import { listeQuestionsToContenu, randint, ecritureNombreRelatif, ecritureNombreRelatifc, ecritureAlgebrique, ecritureParentheseSiNegatif, nombreDeChiffresDansLaPartieEntiere, combinaisonListes } from '../../modules/outils.js'
import { setReponse } from '../../modules/gestionInteractif.js'
import { ajouteChampTexteMathLive } from '../../modules/interactif/questionMathLive.js'
export const titre = 'Soustraction de deux entiers relatifs'
export const interactifReady = true
export const interactifType = 'mathLive'
export const amcReady = true
export const amcType = 'AMCNum'
export const dateDeModifImportante = '11/11/2021'
/**
* Effectuer la soustraction de 2 nombres relatifs.
*
* * On peut paramétrer la distance à zéro maximale des deux termes (par défaut égale à 20)
* * On peut choisir d'avoir une écriture simplifiée (par défaut ce n'est pas le cas)
* @author Rémi Angot
* 5R21
* Rendu les différentes situations équiprobables le 16/10/2021 par Guillaume Valmont
* Ajout possibilité correction non détaillée le 11/11/2021 par Mireille Gain
*/
export const uuid = 'b6982'
export const ref = '5R21'
export default function ExerciceSoustractionsRelatifs (max = 20) {
Exercice.call(this) // Héritage de la classe Exercice()
this.sup = max
this.sup2 = false // écriture simplifiée
this.titre = titre
this.consigne = 'Calculer.'
this.spacing = 2
this.interactifReady = interactifReady
this.interactifType = interactifType
this.amcType = amcType
this.amcReady = amcReady
this.correctionDetailleeDisponible = true
this.correctionDetaillee = true
this.nouvelleVersion = function () {
this.listeQuestions = [] // Liste de questions
this.listeCorrections = [] // Liste de questions corrigées
this.autoCorrection = []
let liste = [[-1, -1], [-1, 1], [1, -1]] // Les deux nombres relatifs ne peuvent pas être tous les deux positifs
liste = combinaisonListes(liste, this.nbQuestions)
for (let i = 0, a, b, k, texte, texteCorr, cpt = 0; i < this.nbQuestions && cpt < 50;) { // On limite le nombre d'essais pour chercher des valeurs nouvelles
a = randint(1, this.sup)
b = randint(1, this.sup)
k = liste[i]
a = a * k[0]
b = b * k[1]
if (this.sup2) {
texte = `$ ${a} - ${ecritureParentheseSiNegatif(b)} =$`
if (this.interactif && !context.isAmc) {
texte = `$ ${a} - ${ecritureParentheseSiNegatif(b)} = $` + ajouteChampTexteMathLive(this, i, { texte: '' })
}
if (b > 0) {
texteCorr = `$ ${a} - ${ecritureParentheseSiNegatif(b)} = ${a - b} $`
} else {
if (this.correctionDetaillee) {
texteCorr = `$ ${a} - ${ecritureParentheseSiNegatif(b)} = ${a} ${ecritureAlgebrique(-b)} = ${a - b}$`
} else { texteCorr = `$ ${a} - ${ecritureParentheseSiNegatif(b)} = ${a - b}$` }
}
} else {
texte = '$ ' + ecritureNombreRelatif(a) + ' - ' + ecritureNombreRelatif(b) + ' =$'
if (this.interactif && !context.isAmc) {
texte = '$ ' + ecritureNombreRelatif(a) + ' - ' + ecritureNombreRelatif(b) + ' = $' + ajouteChampTexteMathLive(this, i, { texte: '' })
}
if (this.correctionDetaillee) {
texteCorr = '$ ' + ecritureNombreRelatif(a) + ' - ' + ecritureNombreRelatif(b) + ' = ' + ecritureNombreRelatifc(a) + ' + ' + ecritureNombreRelatifc(-1 * b) + ' = ' + ecritureNombreRelatifc(a - b) + ' $'
} else {
texteCorr = '$ ' + ecritureNombreRelatif(a) + ' - ' + ecritureNombreRelatif(b) + ' = ' + ecritureNombreRelatifc(a - b) + ' $'
}
}
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)
setReponse(this, i, [a - b, `(${ecritureAlgebrique(a - b)})`], { signe: true, digits: Math.max(2, nombreDeChiffresDansLaPartieEntiere(a - b)), decimals: 0 })
i++
}
cpt++
}
listeQuestionsToContenu(this)
}
this.besoinFormulaireNumerique = ['Valeur maximale', 99999]
this.besoinFormulaire2CaseACocher = ['Avec des écritures simplifiées']
}