math-exercises 1.3.52 → 1.3.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -73
- package/lib/exercises/calcul/addAndSub.d.ts +6 -6
- package/lib/exercises/calcul/addAndSub.js +71 -71
- package/lib/exercises/calcul/addAndSubWithoutRelatives.d.ts +6 -6
- package/lib/exercises/calcul/addAndSubWithoutRelatives.js +80 -80
- package/lib/exercises/calcul/arithmetics/euclideanDivision.d.ts +3 -3
- package/lib/exercises/calcul/arithmetics/euclideanDivision.js +70 -70
- package/lib/exercises/calcul/arithmetics/primeNumbers.d.ts +6 -6
- package/lib/exercises/calcul/arithmetics/primeNumbers.js +90 -90
- package/lib/exercises/calcul/fractions/fractionAndIntegerDivision.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionAndIntegerDivision.js +69 -69
- package/lib/exercises/calcul/fractions/fractionAndIntegerProduct.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionAndIntegerProduct.js +64 -64
- package/lib/exercises/calcul/fractions/fractionAndIntegerSum.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionAndIntegerSum.js +64 -64
- package/lib/exercises/calcul/fractions/fractionToPercentToDecimal.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionToPercentToDecimal.js +119 -119
- package/lib/exercises/calcul/fractions/fractionsDivision.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionsDivision.js +61 -61
- package/lib/exercises/calcul/fractions/fractionsProduct.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionsProduct.js +60 -60
- package/lib/exercises/calcul/fractions/fractionsSum.d.ts +3 -3
- package/lib/exercises/calcul/fractions/fractionsSum.js +60 -60
- package/lib/exercises/calcul/fractions/simplifyFraction.d.ts +3 -3
- package/lib/exercises/calcul/fractions/simplifyFraction.js +55 -55
- package/lib/exercises/calcul/mentalCaluls.ts/mentalAddAndSub.d.ts +3 -3
- package/lib/exercises/calcul/mentalCaluls.ts/mentalAddAndSub.js +79 -79
- package/lib/exercises/calcul/mentalCaluls.ts/mentalDivisions.d.ts +3 -3
- package/lib/exercises/calcul/mentalCaluls.ts/mentalDivisions.js +96 -96
- package/lib/exercises/calcul/mentalCaluls.ts/mentalMultiplications.d.ts +3 -3
- package/lib/exercises/calcul/mentalCaluls.ts/mentalMultiplications.js +80 -80
- package/lib/exercises/calcul/mentalCaluls.ts/mentalPercentage.d.ts +3 -3
- package/lib/exercises/calcul/mentalCaluls.ts/mentalPercentage.js +135 -135
- package/lib/exercises/calcul/operations/operationsPriorities.d.ts +10 -10
- package/lib/exercises/calcul/operations/operationsPriorities.js +128 -128
- package/lib/exercises/calcul/operations/operationsPrioritiesWithoutRelative.d.ts +10 -10
- package/lib/exercises/calcul/operations/operationsPrioritiesWithoutRelative.js +209 -209
- package/lib/exercises/calcul/operationsPriorities.js +88 -0
- package/lib/exercises/calcul/proportionality/proportionalityTable.d.ts +3 -3
- package/lib/exercises/calcul/proportionality/proportionalityTable.js +83 -83
- package/lib/exercises/calcul/rounding/rounding.d.ts +19 -19
- package/lib/exercises/calcul/rounding/rounding.js +142 -142
- package/lib/exercises/calculLitteral/distributivity/allIdentities.d.ts +3 -3
- package/lib/exercises/calculLitteral/distributivity/allIdentities.js +27 -27
- package/lib/exercises/calculLitteral/distributivity/doubleDistributivity.d.ts +3 -3
- package/lib/exercises/calculLitteral/distributivity/doubleDistributivity.js +82 -82
- package/lib/exercises/calculLitteral/distributivity/firstIdentity.d.ts +3 -3
- package/lib/exercises/calculLitteral/distributivity/firstIdentity.js +84 -84
- package/lib/exercises/calculLitteral/distributivity/secondIdentity.d.ts +3 -3
- package/lib/exercises/calculLitteral/distributivity/secondIdentity.js +85 -85
- package/lib/exercises/calculLitteral/distributivity/simpleDistributivity.d.ts +3 -3
- package/lib/exercises/calculLitteral/distributivity/simpleDistributivity.js +84 -84
- package/lib/exercises/calculLitteral/distributivity/thirdIdentity.d.ts +3 -3
- package/lib/exercises/calculLitteral/distributivity/thirdIdentity.js +84 -84
- package/lib/exercises/calculLitteral/equation/equationSimpleSquare.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/equationSimpleSquare.js +165 -165
- package/lib/exercises/calculLitteral/equation/equationType1Exercise.d.ts +6 -6
- package/lib/exercises/calculLitteral/equation/equationType1Exercise.js +71 -71
- package/lib/exercises/calculLitteral/equation/equationType2Exercise.d.ts +6 -6
- package/lib/exercises/calculLitteral/equation/equationType2Exercise.js +69 -69
- package/lib/exercises/calculLitteral/equation/equationType3Exercise.d.ts +6 -6
- package/lib/exercises/calculLitteral/equation/equationType3Exercise.js +73 -73
- package/lib/exercises/calculLitteral/equation/equationType4Exercise.d.ts +6 -6
- package/lib/exercises/calculLitteral/equation/equationType4Exercise.js +75 -75
- package/lib/exercises/calculLitteral/equation/expEquation.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/expEquation.js +67 -67
- package/lib/exercises/calculLitteral/equation/firstDegreeEquation.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/firstDegreeEquation.js +64 -64
- package/lib/exercises/calculLitteral/equation/firstDegreeGeneralEquation.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/firstDegreeGeneralEquation.js +32 -32
- package/lib/exercises/calculLitteral/equation/fractionEquation.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/fractionEquation.js +74 -74
- package/lib/exercises/calculLitteral/equation/logEquation.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/logEquation.js +67 -67
- package/lib/exercises/calculLitteral/equation/multiplicationEquation.d.ts +3 -3
- package/lib/exercises/calculLitteral/equation/multiplicationEquation.js +77 -77
- package/lib/exercises/calculLitteral/factorisation/factoIdRmq1.d.ts +3 -3
- package/lib/exercises/calculLitteral/factorisation/factoIdRmq1.js +70 -70
- package/lib/exercises/calculLitteral/factorisation/factoIdRmq2.d.ts +3 -3
- package/lib/exercises/calculLitteral/factorisation/factoIdRmq2.js +78 -78
- package/lib/exercises/calculLitteral/factorisation/factoIdRmq3.d.ts +3 -3
- package/lib/exercises/calculLitteral/factorisation/factoIdRmq3.js +84 -84
- package/lib/exercises/calculLitteral/factorisation/factoType1Exercise.d.ts +6 -6
- package/lib/exercises/calculLitteral/factorisation/factoType1Exercise.js +88 -88
- package/lib/exercises/calculLitteral/simplifying/evaluateExpression.d.ts +3 -3
- package/lib/exercises/calculLitteral/simplifying/evaluateExpression.js +64 -64
- package/lib/exercises/calculLitteral/simplifying/expSimplifiying.d.ts +3 -3
- package/lib/exercises/calculLitteral/simplifying/expSimplifiying.js +96 -96
- package/lib/exercises/calculLitteral/simplifying/logSimplifiying.d.ts +3 -3
- package/lib/exercises/calculLitteral/simplifying/logSimplifiying.js +78 -78
- package/lib/exercises/calculLitteral/simplifying/reduceExpression.d.ts +3 -3
- package/lib/exercises/calculLitteral/simplifying/reduceExpression.js +121 -121
- package/lib/exercises/complex/addComplex.d.ts +3 -3
- package/lib/exercises/complex/addComplex.js +70 -70
- package/lib/exercises/complex/conjugateComplex.ts.d.ts +3 -3
- package/lib/exercises/complex/conjugateComplex.ts.js +73 -73
- package/lib/exercises/complex/conjugateDivideComplex.d.ts +3 -3
- package/lib/exercises/complex/conjugateDivideComplex.js +65 -65
- package/lib/exercises/complex/conjugateMultiplyComplex.d.ts +3 -3
- package/lib/exercises/complex/conjugateMultiplyComplex.js +69 -69
- package/lib/exercises/complex/divideComplex.d.ts +3 -3
- package/lib/exercises/complex/divideComplex.js +61 -61
- package/lib/exercises/complex/inverseComplex.d.ts +3 -3
- package/lib/exercises/complex/inverseComplex.js +73 -73
- package/lib/exercises/complex/linearCombinaisonComplex.d.ts +3 -3
- package/lib/exercises/complex/linearCombinaisonComplex.js +67 -67
- package/lib/exercises/complex/mutiplyComplex.d.ts +3 -3
- package/lib/exercises/complex/mutiplyComplex.js +67 -67
- package/lib/exercises/complex/reAndIm.d.ts +3 -3
- package/lib/exercises/complex/reAndIm.js +79 -79
- package/lib/exercises/conversion/aeraConversion.d.ts +3 -3
- package/lib/exercises/conversion/aeraConversion.js +62 -62
- package/lib/exercises/conversion/capacityConversion.d.ts +3 -3
- package/lib/exercises/conversion/capacityConversion.js +60 -60
- package/lib/exercises/conversion/lengthConversion.d.ts +3 -3
- package/lib/exercises/conversion/lengthConversion.js +59 -59
- package/lib/exercises/conversion/massConversion.d.ts +3 -3
- package/lib/exercises/conversion/massConversion.js +59 -59
- package/lib/exercises/conversion/volumeCapacityConversion.d.ts +3 -3
- package/lib/exercises/conversion/volumeCapacityConversion.js +76 -76
- package/lib/exercises/conversion/volumeConversion.d.ts +3 -3
- package/lib/exercises/conversion/volumeConversion.js +61 -61
- package/lib/exercises/derivation/derivative/affineDerivative.d.ts +4 -0
- package/lib/exercises/derivation/derivative/affineDerivative.d.ts.map +1 -0
- package/lib/exercises/derivation/derivative/affineDerivative.js +27 -0
- package/lib/exercises/derivation/derivative/constanteDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/constanteDerivative.js +56 -56
- package/lib/exercises/derivation/derivative/expDerivativeOne.d.ts +3 -3
- package/lib/exercises/derivation/derivative/expDerivativeOne.js +65 -65
- package/lib/exercises/derivation/derivative/expDerivativeThree.d.ts +3 -3
- package/lib/exercises/derivation/derivative/expDerivativeThree.js +64 -64
- package/lib/exercises/derivation/derivative/expDerivativeTwo.d.ts +3 -3
- package/lib/exercises/derivation/derivative/expDerivativeTwo.js +65 -65
- package/lib/exercises/derivation/derivative/firstDegreeDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/firstDegreeDerivative.js +58 -58
- package/lib/exercises/derivation/derivative/inverseFunctionDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/inverseFunctionDerivative.js +56 -56
- package/lib/exercises/derivation/derivative/lnDerivativeOne.d.ts +3 -3
- package/lib/exercises/derivation/derivative/lnDerivativeOne.js +63 -63
- package/lib/exercises/derivation/derivative/lnDerivativeThree.d.ts +3 -3
- package/lib/exercises/derivation/derivative/lnDerivativeThree.js +68 -68
- package/lib/exercises/derivation/derivative/lnDerivativeTwo.d.ts +3 -3
- package/lib/exercises/derivation/derivative/lnDerivativeTwo.js +66 -66
- package/lib/exercises/derivation/derivative/powerFunctionDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/powerFunctionDerivative.js +64 -64
- package/lib/exercises/derivation/derivative/rootFunctionDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/rootFunctionDerivative.js +80 -80
- package/lib/exercises/derivation/derivative/secondDegreeDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/secondDegreeDerivative.js +64 -64
- package/lib/exercises/derivation/derivative/thirdDegreeDerivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/thirdDegreeDerivative.js +66 -66
- package/lib/exercises/derivation/derivative/thirdDegreeFunctionVariation.d.ts +3 -3
- package/lib/exercises/derivation/derivative/thirdDegreeFunctionVariation.js +101 -101
- package/lib/exercises/derivation/derivative/thridDegreeDerivative.d.ts +1 -0
- package/lib/exercises/derivation/derivative/thridDegreeDerivative.d.ts.map +1 -0
- package/lib/exercises/derivation/derivative/thridDegreeDerivative.js +1 -0
- package/lib/exercises/derivation/derivative/usualderivative.d.ts +3 -3
- package/lib/exercises/derivation/derivative/usualderivative.js +36 -36
- package/lib/exercises/derivation/derivativeNumberReading.d.ts +3 -3
- package/lib/exercises/derivation/derivativeNumberReading.js +84 -84
- package/lib/exercises/equaDiff/equaDiffGeneralForme.d.ts +3 -3
- package/lib/exercises/equaDiff/equaDiffGeneralForme.js +66 -66
- package/lib/exercises/equaDiff/equaDiffGeneralFormeWithIC.d.ts +3 -3
- package/lib/exercises/equaDiff/equaDiffGeneralFormeWithIC.js +80 -80
- package/lib/exercises/exercise.d.ts +32 -32
- package/lib/exercises/exercise.js +2 -2
- package/lib/exercises/exercises.d.ts +1 -1
- package/lib/exercises/exercises.js +347 -347
- package/lib/exercises/functions/affines/leadingCoefficient.d.ts +3 -3
- package/lib/exercises/functions/affines/leadingCoefficient.js +93 -93
- package/lib/exercises/functions/affines/leadingCoefficientCalculV1.d.ts +3 -3
- package/lib/exercises/functions/affines/leadingCoefficientCalculV1.js +59 -59
- package/lib/exercises/functions/affines/leadingCoefficientCalculV2.d.ts +3 -3
- package/lib/exercises/functions/affines/leadingCoefficientCalculV2.js +58 -58
- package/lib/exercises/functions/affines/signFunction.d.ts +3 -3
- package/lib/exercises/functions/affines/signFunction.js +84 -84
- package/lib/exercises/functions/basics/imageFunction.d.ts +3 -3
- package/lib/exercises/functions/basics/imageFunction.js +65 -65
- package/lib/exercises/functions/basics/imageFunctionGeogebra.d.ts +3 -3
- package/lib/exercises/functions/basics/imageFunctionGeogebra.js +89 -89
- package/lib/exercises/functions/basics/inverseImageFunction.d.ts +3 -3
- package/lib/exercises/functions/basics/inverseImageFunction.js +62 -62
- package/lib/exercises/functions/basics/inverseImageFunctionGeogebra.d.ts +3 -3
- package/lib/exercises/functions/basics/inverseImageFunctionGeogebra.js +154 -154
- package/lib/exercises/functions/trinoms/alphaBetaFromDevForm.d.ts +3 -3
- package/lib/exercises/functions/trinoms/alphaBetaFromDevForm.js +63 -63
- package/lib/exercises/functions/trinoms/alphaBetaInCanonicalForm.d.ts +3 -3
- package/lib/exercises/functions/trinoms/alphaBetaInCanonicalForm.js +91 -91
- package/lib/exercises/functions/trinoms/canonicalFromDevForm.d.ts +3 -3
- package/lib/exercises/functions/trinoms/canonicalFromDevForm.js +58 -58
- package/lib/exercises/functions/trinoms/extremumFromCanonicalForm.d.ts +3 -3
- package/lib/exercises/functions/trinoms/extremumFromCanonicalForm.js +84 -84
- package/lib/exercises/functions/trinoms/extremumTypeFromAlgebricForm.d.ts +3 -3
- package/lib/exercises/functions/trinoms/extremumTypeFromAlgebricForm.js +59 -59
- package/lib/exercises/functions/trinoms/variationsFromAlgebricForm.d.ts +3 -3
- package/lib/exercises/functions/trinoms/variationsFromAlgebricForm.js +59 -59
- package/lib/exercises/geometry/cartesian/derivativeNumberReading.d.ts +4 -0
- package/lib/exercises/geometry/cartesian/derivativeNumberReading.d.ts.map +1 -0
- package/lib/exercises/geometry/cartesian/derivativeNumberReading.js +51 -0
- package/lib/exercises/geometry/cartesian/derivativeNumberReading2.d.ts +1 -0
- package/lib/exercises/geometry/cartesian/derivativeNumberReading2.d.ts.map +1 -0
- package/lib/exercises/geometry/cartesian/derivativeNumberReading2.js +91 -0
- package/lib/exercises/geometry/cartesian/distanceBetweenTwoPoints.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/distanceBetweenTwoPoints.js +107 -107
- package/lib/exercises/geometry/cartesian/imageFunction.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/imageFunction.d.ts.map +1 -1
- package/lib/exercises/geometry/cartesian/imageFunction.js +62 -65
- package/lib/exercises/geometry/cartesian/inverseImageFunction.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/inverseImageFunction.d.ts.map +1 -1
- package/lib/exercises/geometry/cartesian/inverseImageFunction.js +57 -62
- package/lib/exercises/geometry/cartesian/leadingCoefficient.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/leadingCoefficient.d.ts.map +1 -1
- package/lib/exercises/geometry/cartesian/leadingCoefficient.js +90 -93
- package/lib/exercises/geometry/cartesian/leadingCoefficientCalculV1.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/leadingCoefficientCalculV1.d.ts.map +1 -1
- package/lib/exercises/geometry/cartesian/leadingCoefficientCalculV1.js +56 -59
- package/lib/exercises/geometry/cartesian/leadingCoefficientCalculV2.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/leadingCoefficientCalculV2.d.ts.map +1 -1
- package/lib/exercises/geometry/cartesian/leadingCoefficientCalculV2.js +55 -58
- package/lib/exercises/geometry/cartesian/midpoint.d.ts +3 -3
- package/lib/exercises/geometry/cartesian/midpoint.js +63 -63
- package/lib/exercises/geometry/euclidean/TriangleArea.d.ts +4 -0
- package/lib/exercises/geometry/euclidean/TriangleArea.d.ts.map +1 -0
- package/lib/exercises/geometry/euclidean/TriangleArea.js +77 -0
- package/lib/exercises/geometry/euclidean/circleArea.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/circleArea.js +58 -58
- package/lib/exercises/geometry/euclidean/circleCircumference.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/circleCircumference.js +58 -58
- package/lib/exercises/geometry/euclidean/pythagore.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/pythagore.js +86 -86
- package/lib/exercises/geometry/euclidean/pythagoreCalcul.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/pythagoreCalcul.js +91 -91
- package/lib/exercises/geometry/euclidean/rectangleArea.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/rectangleArea.js +53 -53
- package/lib/exercises/geometry/euclidean/rectanglePerimeter.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/rectanglePerimeter.js +53 -53
- package/lib/exercises/geometry/euclidean/rightTriangleArea.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/rightTriangleArea.js +67 -67
- package/lib/exercises/geometry/euclidean/squareArea.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/squareArea.js +52 -52
- package/lib/exercises/geometry/euclidean/squarePerimeter.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/squarePerimeter.js +52 -52
- package/lib/exercises/geometry/euclidean/thales.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/thales.js +113 -113
- package/lib/exercises/geometry/euclidean/thalesCalcul.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/thalesCalcul.js +132 -132
- package/lib/exercises/geometry/euclidean/triangleArea.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/triangleArea.js +80 -80
- package/lib/exercises/geometry/euclidean/triangleAreaV2.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/triangleAreaV2.js +77 -77
- package/lib/exercises/geometry/euclidean/trianglePerimeter.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/trianglePerimeter.js +53 -53
- package/lib/exercises/geometry/euclidean/trigonometry.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/trigonometry.js +97 -97
- package/lib/exercises/geometry/euclidean/trigonometryAngleCalcul.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/trigonometryAngleCalcul.js +69 -69
- package/lib/exercises/geometry/euclidean/trigonometrySideCalcul.d.ts +3 -3
- package/lib/exercises/geometry/euclidean/trigonometrySideCalcul.js +80 -80
- package/lib/exercises/geometry/vectors/scalarProductViaCoords.d.ts +3 -3
- package/lib/exercises/geometry/vectors/scalarProductViaCoords.js +60 -60
- package/lib/exercises/geometry/vectors/scalarProductViaNorms.js +27 -27
- package/lib/exercises/limits/polynomeLimit.d.ts +3 -3
- package/lib/exercises/limits/polynomeLimit.js +132 -132
- package/lib/exercises/percent/applyPercent.d.ts +3 -3
- package/lib/exercises/percent/applyPercent.js +74 -74
- package/lib/exercises/percent/averageEvolutionRate.d.ts +3 -3
- package/lib/exercises/percent/averageEvolutionRate.js +63 -63
- package/lib/exercises/percent/globalPercent.d.ts +3 -3
- package/lib/exercises/percent/globalPercent.js +77 -77
- package/lib/exercises/percent/reciprocalPercentage.d.ts +3 -3
- package/lib/exercises/percent/reciprocalPercentage.js +65 -65
- package/lib/exercises/powers/powersDivision.d.ts +7 -7
- package/lib/exercises/powers/powersDivision.js +77 -77
- package/lib/exercises/powers/powersOfTenToDecimal.d.ts +6 -6
- package/lib/exercises/powers/powersOfTenToDecimal.js +65 -65
- package/lib/exercises/powers/powersPower.d.ts +7 -7
- package/lib/exercises/powers/powersPower.js +76 -76
- package/lib/exercises/powers/powersProduct.d.ts +7 -7
- package/lib/exercises/powers/powersProduct.js +77 -77
- package/lib/exercises/powers/scientificToDecimal.d.ts +6 -6
- package/lib/exercises/powers/scientificToDecimal.js +69 -69
- package/lib/exercises/primitve/constantPrimitive.d.ts +3 -3
- package/lib/exercises/primitve/constantPrimitive.js +56 -56
- package/lib/exercises/primitve/exponentialPrimitive.d.ts +3 -3
- package/lib/exercises/primitve/exponentialPrimitive.js +103 -103
- package/lib/exercises/primitve/logarithmePrimitive.d.ts +3 -3
- package/lib/exercises/primitve/logarithmePrimitive.js +74 -74
- package/lib/exercises/primitve/polynomialPrimitive.d.ts +3 -3
- package/lib/exercises/primitve/polynomialPrimitive.js +80 -80
- package/lib/exercises/primitve/sinCosPrimitive.d.ts +3 -3
- package/lib/exercises/primitve/sinCosPrimitive.js +112 -112
- package/lib/exercises/primitve/usualPrimitives.d.ts +3 -3
- package/lib/exercises/primitve/usualPrimitives.js +39 -39
- package/lib/exercises/proba/conditionalProbability.d.ts +3 -3
- package/lib/exercises/proba/conditionalProbability.js +99 -99
- package/lib/exercises/proba/marginalAndConditionalFrequency.d.ts +3 -3
- package/lib/exercises/proba/marginalAndConditionalFrequency.js +106 -106
- package/lib/exercises/proba/probabilityTree.d.ts +3 -3
- package/lib/exercises/proba/probabilityTree.js +132 -132
- package/lib/exercises/probaStat/averageWithTable.d.ts +3 -3
- package/lib/exercises/probaStat/averageWithTable.js +76 -76
- package/lib/exercises/probaStat/conditionalProbability.d.ts +3 -3
- package/lib/exercises/probaStat/conditionalProbability.js +102 -102
- package/lib/exercises/probaStat/marginalAndConditionalFrequency.d.ts +3 -3
- package/lib/exercises/probaStat/marginalAndConditionalFrequency.js +109 -109
- package/lib/exercises/probaStat/median.d.ts +3 -3
- package/lib/exercises/probaStat/median.js +82 -82
- package/lib/exercises/probaStat/medianList.d.ts +3 -3
- package/lib/exercises/probaStat/medianList.js +67 -67
- package/lib/exercises/probaStat/probabilityTree.d.ts +3 -3
- package/lib/exercises/probaStat/probabilityTree.js +135 -135
- package/lib/exercises/probaStat/quartiles.d.ts +3 -3
- package/lib/exercises/probaStat/quartiles.js +96 -96
- package/lib/exercises/probaStat/quartilesList.d.ts +3 -3
- package/lib/exercises/probaStat/quartilesList.js +81 -81
- package/lib/exercises/sequences/arithmetic/arithmeticExplicitFormulaUsage.d.ts +3 -3
- package/lib/exercises/sequences/arithmetic/arithmeticExplicitFormulaUsage.js +59 -59
- package/lib/exercises/sequences/arithmetic/arithmeticFindExplicitFormula.d.ts +3 -3
- package/lib/exercises/sequences/arithmetic/arithmeticFindExplicitFormula.js +59 -59
- package/lib/exercises/sequences/arithmetic/arithmeticFindReason.d.ts +3 -3
- package/lib/exercises/sequences/arithmetic/arithmeticFindReason.js +59 -59
- package/lib/exercises/sequences/arithmetic/arithmeticReasonUsage.d.ts +3 -3
- package/lib/exercises/sequences/arithmetic/arithmeticReasonUsage.js +58 -58
- package/lib/exercises/sequences/arithmetic/arithmeticRecurrenceFormulaUsage.d.ts +3 -3
- package/lib/exercises/sequences/arithmetic/arithmeticRecurrenceFormulaUsage.js +58 -58
- package/lib/exercises/sequences/arithmetic/arithmeticSum.js +1 -1
- package/lib/exercises/sequences/arithmetic/arithmeticThresholdFind.d.ts +3 -3
- package/lib/exercises/sequences/arithmetic/arithmeticThresholdFind.js +68 -68
- package/lib/exercises/sequences/geometric/geometricExplicitFormulaUsage.d.ts +3 -3
- package/lib/exercises/sequences/geometric/geometricExplicitFormulaUsage.js +64 -64
- package/lib/exercises/sequences/geometric/geometricFindExplicitFormula.d.ts +3 -3
- package/lib/exercises/sequences/geometric/geometricFindExplicitFormula.js +70 -70
- package/lib/exercises/sequences/geometric/geometricFindReason.d.ts +3 -3
- package/lib/exercises/sequences/geometric/geometricFindReason.js +66 -66
- package/lib/exercises/sequences/geometric/geometricReasonUsage.d.ts +3 -3
- package/lib/exercises/sequences/geometric/geometricReasonUsage.js +65 -65
- package/lib/exercises/sequences/geometric/geometricRecurrenceFormulaUsage.d.ts +7 -7
- package/lib/exercises/sequences/geometric/geometricRecurrenceFormulaUsage.js +65 -65
- package/lib/exercises/squareRoots/simpifySquareRoot.d.ts +3 -3
- package/lib/exercises/squareRoots/simpifySquareRoot.js +61 -61
- package/lib/exercises/trigonometry/mainRemarkableValues.d.ts +3 -3
- package/lib/exercises/trigonometry/mainRemarkableValues.js +67 -67
- package/lib/exercises/trigonometry/remarkableValues.d.ts +3 -3
- package/lib/exercises/trigonometry/remarkableValues.js +67 -67
- package/lib/exercises/utils/getDistinctQuestions.d.ts +3 -3
- package/lib/exercises/utils/getDistinctQuestions.js +30 -30
- package/lib/geometry/point.js +27 -0
- package/lib/geometry/vector.js +31 -0
- package/lib/index.d.ts +7 -7
- package/lib/index.js +26 -26
- package/lib/math/complex/complex.d.ts +18 -18
- package/lib/math/complex/complex.js +63 -63
- package/lib/math/geometry/droite.d.ts +19 -19
- package/lib/math/geometry/droite.js +62 -62
- package/lib/math/geometry/point.d.ts +30 -30
- package/lib/math/geometry/point.js +64 -64
- package/lib/math/geometry/triangles.d.ts +53 -53
- package/lib/math/geometry/triangles.js +183 -183
- package/lib/math/geometry/vector.d.ts +15 -15
- package/lib/math/geometry/vector.js +31 -31
- package/lib/math/numbers/decimals/decimal.d.ts +24 -24
- package/lib/math/numbers/decimals/decimal.js +140 -140
- package/lib/math/numbers/epsilon.d.ts +1 -1
- package/lib/math/numbers/epsilon.js +10 -10
- package/lib/math/numbers/integer/integer.d.ts +14 -14
- package/lib/math/numbers/integer/integer.js +68 -68
- package/lib/math/numbers/integer/power.d.ts +13 -13
- package/lib/math/numbers/integer/power.js +52 -52
- package/lib/math/numbers/nombre.d.ts +13 -13
- package/lib/math/numbers/nombre.js +10 -10
- package/lib/math/numbers/rationals/rational.d.ts +25 -25
- package/lib/math/numbers/rationals/rational.js +113 -113
- package/lib/math/numbers/reals/real.d.ts +9 -9
- package/lib/math/numbers/reals/real.js +16 -16
- package/lib/math/numbers/reals/squareRoot.d.ts +18 -18
- package/lib/math/numbers/reals/squareRoot.js +63 -63
- package/lib/math/polynomials/affine.d.ts +15 -15
- package/lib/math/polynomials/affine.js +42 -42
- package/lib/math/polynomials/polynomial.d.ts +28 -28
- package/lib/math/polynomials/polynomial.js +184 -184
- package/lib/math/polynomials/trinom.d.ts +23 -23
- package/lib/math/polynomials/trinom.js +67 -67
- package/lib/math/sequences/arithmeticSequence.js +1 -1
- package/lib/math/sequences/geometricSequence.d.ts +3 -3
- package/lib/math/sequences/geometricSequence.js +8 -8
- package/lib/math/sequences/sequence.d.ts +22 -22
- package/lib/math/sequences/sequence.js +21 -21
- package/lib/math/sets/discreteSet.d.ts +10 -10
- package/lib/math/sets/discreteSet.js +28 -28
- package/lib/math/sets/emptySet.js +6 -6
- package/lib/math/sets/intervals/intervals.d.ts +26 -26
- package/lib/math/sets/intervals/intervals.js +104 -104
- package/lib/math/sets/mathSet.d.ts +7 -7
- package/lib/math/sets/mathSet.js +10 -10
- package/lib/math/sets/mathSetInterface.d.ts +5 -5
- package/lib/math/sets/mathSetInterface.js +2 -2
- package/lib/math/trigonometry/remarkableValue.d.ts +10 -10
- package/lib/math/trigonometry/remarkableValue.js +29 -29
- package/lib/math/trigonometry/remarkableValues.d.ts +2 -2
- package/lib/math/trigonometry/remarkableValues.js +51 -51
- package/lib/math/utils/arithmetic/coprimesOf.d.ts +1 -1
- package/lib/math/utils/arithmetic/coprimesOf.js +13 -13
- package/lib/math/utils/arithmetic/dividersOf.d.ts +1 -1
- package/lib/math/utils/arithmetic/dividersOf.js +12 -12
- package/lib/math/utils/arithmetic/gcd.d.ts +1 -1
- package/lib/math/utils/arithmetic/gcd.js +7 -7
- package/lib/math/utils/arithmetic/isSquare.d.ts +1 -1
- package/lib/math/utils/arithmetic/isSquare.js +7 -7
- package/lib/math/utils/arithmetic/lcd.d.ts +1 -1
- package/lib/math/utils/arithmetic/lcd.js +12 -12
- package/lib/math/utils/arithmetic/nonCoprimesOf.d.ts +1 -1
- package/lib/math/utils/arithmetic/nonCoprimesOf.js +13 -13
- package/lib/math/utils/arithmetic/nonDividersOf.d.ts +1 -1
- package/lib/math/utils/arithmetic/nonDividersOf.js +14 -14
- package/lib/math/utils/arithmetic/primeFactors.d.ts +5 -5
- package/lib/math/utils/arithmetic/primeFactors.js +22 -22
- package/lib/math/utils/decimals/decimalPartLengthOf.d.ts +1 -1
- package/lib/math/utils/decimals/decimalPartLengthOf.js +14 -14
- package/lib/math/utils/random/randTupleInt.d.ts +13 -13
- package/lib/math/utils/random/randTupleInt.js +30 -30
- package/lib/math/utils/random/randint.d.ts +4 -4
- package/lib/math/utils/random/randint.js +18 -18
- package/lib/math/utils/round.d.ts +1 -1
- package/lib/math/utils/round.js +8 -8
- package/lib/mathutils/arithmetic/coprimesOf.js +13 -0
- package/lib/mathutils/arithmetic/dividersOf.js +12 -0
- package/lib/mathutils/arithmetic/gcd.js +7 -0
- package/lib/mathutils/arithmetic/isSquare.js +7 -0
- package/lib/mathutils/arithmetic/lcd.js +12 -0
- package/lib/mathutils/arithmetic/nonCoprimesOf.js +13 -0
- package/lib/mathutils/arithmetic/nonDividersOf.js +14 -0
- package/lib/mathutils/arithmetic/primeFactors.js +22 -0
- package/lib/mathutils/decimals/decimalPartLengthOf.js +14 -0
- package/lib/mathutils/random/randTupleInt.js +30 -0
- package/lib/mathutils/random/randint.js +18 -0
- package/lib/mathutils/round.js +8 -0
- package/lib/numbers/decimals/decimal.js +140 -0
- package/lib/numbers/epsilon.js +10 -0
- package/lib/numbers/integer/integer.js +68 -0
- package/lib/numbers/integer/power.js +52 -0
- package/lib/numbers/nombre.js +10 -0
- package/lib/numbers/rationals/rational.js +113 -0
- package/lib/numbers/reals/real.js +16 -0
- package/lib/numbers/reals/squareRoot.js +63 -0
- package/lib/polynomials/affine.js +42 -0
- package/lib/polynomials/polynomial.js +125 -0
- package/lib/server.d.ts +1 -1
- package/lib/server.js +54 -54
- package/lib/sets/discreteSet.js +28 -0
- package/lib/sets/emptySet.js +6 -0
- package/lib/sets/intervals/intervals.js +108 -0
- package/lib/sets/intervals/union.js +1 -0
- package/lib/sets/mathSet.js +10 -0
- package/lib/sets/mathSetInterface.js +2 -0
- package/lib/tree/nodes/complex/complexNode.d.ts +14 -14
- package/lib/tree/nodes/complex/complexNode.js +43 -43
- package/lib/tree/nodes/expression/expressionNode.js +1 -1
- package/lib/tree/nodes/functions/cosNode.d.ts +10 -10
- package/lib/tree/nodes/functions/cosNode.js +25 -25
- package/lib/tree/nodes/functions/expNode.d.ts +10 -10
- package/lib/tree/nodes/functions/expNode.js +25 -25
- package/lib/tree/nodes/functions/functionNode.d.ts +16 -16
- package/lib/tree/nodes/functions/functionNode.js +22 -22
- package/lib/tree/nodes/functions/logNode.d.ts +10 -10
- package/lib/tree/nodes/functions/logNode.js +25 -25
- package/lib/tree/nodes/functions/oppositeNode.d.ts +8 -8
- package/lib/tree/nodes/functions/oppositeNode.js +30 -30
- package/lib/tree/nodes/functions/sinNode.d.ts +10 -10
- package/lib/tree/nodes/functions/sinNode.js +25 -25
- package/lib/tree/nodes/functions/sqrtNode.d.ts +9 -9
- package/lib/tree/nodes/functions/sqrtNode.js +22 -22
- package/lib/tree/nodes/node.d.ts +13 -13
- package/lib/tree/nodes/node.js +11 -11
- package/lib/tree/nodes/numbers/constantNode.d.ts +10 -10
- package/lib/tree/nodes/numbers/constantNode.js +22 -22
- package/lib/tree/nodes/numbers/numberNode.d.ts +11 -11
- package/lib/tree/nodes/numbers/numberNode.js +22 -22
- package/lib/tree/nodes/numbers/piNode.d.ts +2 -2
- package/lib/tree/nodes/numbers/piNode.js +5 -5
- package/lib/tree/nodes/operators/addNode.d.ts +8 -8
- package/lib/tree/nodes/operators/addNode.js +23 -23
- package/lib/tree/nodes/operators/divideNode.d.ts +12 -12
- package/lib/tree/nodes/operators/divideNode.js +38 -38
- package/lib/tree/nodes/operators/equalNode.d.ts +8 -8
- package/lib/tree/nodes/operators/equalNode.js +20 -20
- package/lib/tree/nodes/operators/fractionNode.d.ts +12 -12
- package/lib/tree/nodes/operators/fractionNode.js +24 -24
- package/lib/tree/nodes/operators/multiplyNode.d.ts +8 -8
- package/lib/tree/nodes/operators/multiplyNode.js +52 -52
- package/lib/tree/nodes/operators/operatorNode.d.ts +21 -21
- package/lib/tree/nodes/operators/operatorNode.js +35 -35
- package/lib/tree/nodes/operators/powerNode.d.ts +8 -8
- package/lib/tree/nodes/operators/powerNode.js +37 -37
- package/lib/tree/nodes/operators/substractNode.d.ts +8 -8
- package/lib/tree/nodes/operators/substractNode.js +28 -28
- package/lib/tree/nodes/variables/variableNode.d.ts +9 -9
- package/lib/tree/nodes/variables/variableNode.js +20 -20
- package/lib/tree/parsers/derivateParser.js +62 -62
- package/lib/tree/parsers/latexParser.js +110 -0
- package/lib/tree/parsers/simplify.d.ts +3 -3
- package/lib/tree/parsers/simplify.js +73 -73
- package/lib/utils/arrayEqual.d.ts +1 -1
- package/lib/utils/arrayEqual.js +13 -13
- package/lib/utils/coin.js +7 -0
- package/lib/utils/coinFlip.d.ts +1 -1
- package/lib/utils/coinFlip.js +7 -7
- package/lib/utils/diceFlip.d.ts +1 -1
- package/lib/utils/diceFlip.js +12 -12
- package/lib/utils/random.d.ts +1 -1
- package/lib/utils/random.js +7 -7
- package/lib/utils/shuffle.d.ts +1 -1
- package/lib/utils/shuffle.js +15 -15
- package/package.json +51 -51
- package/lib/exercises/calculLitteral/equation/evaluateExpression.d.ts +0 -4
- package/lib/exercises/calculLitteral/equation/evaluateExpression.d.ts.map +0 -1
- package/lib/exercises/calculLitteral/equation/evaluateExpression.js +0 -61
- package/lib/exercises/functions/affines/template.d.ts +0 -4
- package/lib/exercises/functions/affines/template.d.ts.map +0 -1
- package/lib/exercises/functions/affines/template.js +0 -51
- package/lib/exercises/geometry/cartesian/imageFunctionGeogebra.d.ts +0 -4
- package/lib/exercises/geometry/cartesian/imageFunctionGeogebra.d.ts.map +0 -1
- package/lib/exercises/geometry/cartesian/imageFunctionGeogebra.js +0 -89
- package/lib/exercises/geometry/cartesian/inverseImageFunctionGeogebra.d.ts +0 -4
- package/lib/exercises/geometry/cartesian/inverseImageFunctionGeogebra.d.ts.map +0 -1
- package/lib/exercises/geometry/cartesian/inverseImageFunctionGeogebra.js +0 -154
- package/lib/exercises/geometry/cartesian/signFunction.d.ts +0 -4
- package/lib/exercises/geometry/cartesian/signFunction.d.ts.map +0 -1
- package/lib/exercises/geometry/cartesian/signFunction.js +0 -84
- package/lib/exercises/probaStat/frequencyTable.d.ts +0 -4
- package/lib/exercises/probaStat/frequencyTable.d.ts.map +0 -1
- package/lib/exercises/probaStat/frequencyTable.js +0 -76
|
@@ -1,347 +1,347 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.exercises = void 0;
|
|
4
|
-
const addAndSub_1 = require("./calcul/addAndSub");
|
|
5
|
-
const addAndSubWithoutRelatives_1 = require("./calcul/addAndSubWithoutRelatives");
|
|
6
|
-
const fractionAndIntegerDivision_1 = require("./calcul/fractions/fractionAndIntegerDivision");
|
|
7
|
-
const fractionAndIntegerProduct_1 = require("./calcul/fractions/fractionAndIntegerProduct");
|
|
8
|
-
const fractionAndIntegerSum_1 = require("./calcul/fractions/fractionAndIntegerSum");
|
|
9
|
-
const fractionToPercentToDecimal_1 = require("./calcul/fractions/fractionToPercentToDecimal");
|
|
10
|
-
const fractionsDivision_1 = require("./calcul/fractions/fractionsDivision");
|
|
11
|
-
const fractionsProduct_1 = require("./calcul/fractions/fractionsProduct");
|
|
12
|
-
const fractionsSum_1 = require("./calcul/fractions/fractionsSum");
|
|
13
|
-
const simplifyFraction_1 = require("./calcul/fractions/simplifyFraction");
|
|
14
|
-
const mentalAddAndSub_1 = require("./calcul/mentalCaluls.ts/mentalAddAndSub");
|
|
15
|
-
const mentalDivisions_1 = require("./calcul/mentalCaluls.ts/mentalDivisions");
|
|
16
|
-
const mentalMultiplications_1 = require("./calcul/mentalCaluls.ts/mentalMultiplications");
|
|
17
|
-
const mentalPercentage_1 = require("./calcul/mentalCaluls.ts/mentalPercentage");
|
|
18
|
-
const operationsPriorities_1 = require("./calcul/operations/operationsPriorities");
|
|
19
|
-
const operationsPrioritiesWithoutRelative_1 = require("./calcul/operations/operationsPrioritiesWithoutRelative");
|
|
20
|
-
const primeNumbers_1 = require("./calcul/arithmetics/primeNumbers");
|
|
21
|
-
const rounding_1 = require("./calcul/rounding/rounding");
|
|
22
|
-
const allIdentities_1 = require("./calculLitteral/distributivity/allIdentities");
|
|
23
|
-
const doubleDistributivity_1 = require("./calculLitteral/distributivity/doubleDistributivity");
|
|
24
|
-
const firstIdentity_1 = require("./calculLitteral/distributivity/firstIdentity");
|
|
25
|
-
const secondIdentity_1 = require("./calculLitteral/distributivity/secondIdentity");
|
|
26
|
-
const simpleDistributivity_1 = require("./calculLitteral/distributivity/simpleDistributivity");
|
|
27
|
-
const thirdIdentity_1 = require("./calculLitteral/distributivity/thirdIdentity");
|
|
28
|
-
const equationSimpleSquare_1 = require("./calculLitteral/equation/equationSimpleSquare");
|
|
29
|
-
const equationType1Exercise_1 = require("./calculLitteral/equation/equationType1Exercise");
|
|
30
|
-
const equationType2Exercise_1 = require("./calculLitteral/equation/equationType2Exercise");
|
|
31
|
-
const equationType3Exercise_1 = require("./calculLitteral/equation/equationType3Exercise");
|
|
32
|
-
const equationType4Exercise_1 = require("./calculLitteral/equation/equationType4Exercise");
|
|
33
|
-
const firstDegreeEquation_1 = require("./calculLitteral/equation/firstDegreeEquation");
|
|
34
|
-
const fractionEquation_1 = require("./calculLitteral/equation/fractionEquation");
|
|
35
|
-
const multiplicationEquation_1 = require("./calculLitteral/equation/multiplicationEquation");
|
|
36
|
-
const factoIdRmq1_1 = require("./calculLitteral/factorisation/factoIdRmq1");
|
|
37
|
-
const factoIdRmq2_1 = require("./calculLitteral/factorisation/factoIdRmq2");
|
|
38
|
-
const factoIdRmq3_1 = require("./calculLitteral/factorisation/factoIdRmq3");
|
|
39
|
-
const factoType1Exercise_1 = require("./calculLitteral/factorisation/factoType1Exercise");
|
|
40
|
-
const aeraConversion_1 = require("./conversion/aeraConversion");
|
|
41
|
-
const capacityConversion_1 = require("./conversion/capacityConversion");
|
|
42
|
-
const lengthConversion_1 = require("./conversion/lengthConversion");
|
|
43
|
-
const massConversion_1 = require("./conversion/massConversion");
|
|
44
|
-
const volumeCapacityConversion_1 = require("./conversion/volumeCapacityConversion");
|
|
45
|
-
const volumeConversion_1 = require("./conversion/volumeConversion");
|
|
46
|
-
const constanteDerivative_1 = require("./derivation/derivative/constanteDerivative");
|
|
47
|
-
const firstDegreeDerivative_1 = require("./derivation/derivative/firstDegreeDerivative");
|
|
48
|
-
const inverseFunctionDerivative_1 = require("./derivation/derivative/inverseFunctionDerivative");
|
|
49
|
-
const powerFunctionDerivative_1 = require("./derivation/derivative/powerFunctionDerivative");
|
|
50
|
-
const rootFunctionDerivative_1 = require("./derivation/derivative/rootFunctionDerivative");
|
|
51
|
-
const secondDegreeDerivative_1 = require("./derivation/derivative/secondDegreeDerivative");
|
|
52
|
-
const thirdDegreeDerivative_1 = require("./derivation/derivative/thirdDegreeDerivative");
|
|
53
|
-
const usualderivative_1 = require("./derivation/derivative/usualderivative");
|
|
54
|
-
const derivativeNumberReading_1 = require("./derivation/derivativeNumberReading");
|
|
55
|
-
const leadingCoefficient_1 = require("./functions/affines/leadingCoefficient");
|
|
56
|
-
const midpoint_1 = require("./geometry/cartesian/midpoint");
|
|
57
|
-
const pythagore_1 = require("./geometry/euclidean/pythagore");
|
|
58
|
-
const pythagoreCalcul_1 = require("./geometry/euclidean/pythagoreCalcul");
|
|
59
|
-
const rightTriangleArea_1 = require("./geometry/euclidean/rightTriangleArea");
|
|
60
|
-
const thales_1 = require("./geometry/euclidean/thales");
|
|
61
|
-
const thalesCalcul_1 = require("./geometry/euclidean/thalesCalcul");
|
|
62
|
-
const trigonometry_1 = require("./geometry/euclidean/trigonometry");
|
|
63
|
-
const trigonometryAngleCalcul_1 = require("./geometry/euclidean/trigonometryAngleCalcul");
|
|
64
|
-
const trigonometrySideCalcul_1 = require("./geometry/euclidean/trigonometrySideCalcul");
|
|
65
|
-
const scalarProductViaCoords_1 = require("./geometry/vectors/scalarProductViaCoords");
|
|
66
|
-
const applyPercent_1 = require("./percent/applyPercent");
|
|
67
|
-
const averageEvolutionRate_1 = require("./percent/averageEvolutionRate");
|
|
68
|
-
const globalPercent_1 = require("./percent/globalPercent");
|
|
69
|
-
const reciprocalPercentage_1 = require("./percent/reciprocalPercentage");
|
|
70
|
-
const powersDivision_1 = require("./powers/powersDivision");
|
|
71
|
-
const powersOfTenToDecimal_1 = require("./powers/powersOfTenToDecimal");
|
|
72
|
-
const powersPower_1 = require("./powers/powersPower");
|
|
73
|
-
const powersProduct_1 = require("./powers/powersProduct");
|
|
74
|
-
const scientificToDecimal_1 = require("./powers/scientificToDecimal");
|
|
75
|
-
const conditionalProbability_1 = require("./probaStat/conditionalProbability");
|
|
76
|
-
const marginalAndConditionalFrequency_1 = require("./probaStat/marginalAndConditionalFrequency");
|
|
77
|
-
const probabilityTree_1 = require("./probaStat/probabilityTree");
|
|
78
|
-
const arithmeticExplicitFormulaUsage_1 = require("./sequences/arithmetic/arithmeticExplicitFormulaUsage");
|
|
79
|
-
const arithmeticFindExplicitFormula_1 = require("./sequences/arithmetic/arithmeticFindExplicitFormula");
|
|
80
|
-
const arithmeticFindReason_1 = require("./sequences/arithmetic/arithmeticFindReason");
|
|
81
|
-
const arithmeticReasonUsage_1 = require("./sequences/arithmetic/arithmeticReasonUsage");
|
|
82
|
-
const arithmeticRecurrenceFormulaUsage_1 = require("./sequences/arithmetic/arithmeticRecurrenceFormulaUsage");
|
|
83
|
-
const arithmeticThresholdFind_1 = require("./sequences/arithmetic/arithmeticThresholdFind");
|
|
84
|
-
const geometricExplicitFormulaUsage_1 = require("./sequences/geometric/geometricExplicitFormulaUsage");
|
|
85
|
-
const geometricFindExplicitFormula_1 = require("./sequences/geometric/geometricFindExplicitFormula");
|
|
86
|
-
const geometricFindReason_1 = require("./sequences/geometric/geometricFindReason");
|
|
87
|
-
const geometricReasonUsage_1 = require("./sequences/geometric/geometricReasonUsage");
|
|
88
|
-
const geometricRecurrenceFormulaUsage_1 = require("./sequences/geometric/geometricRecurrenceFormulaUsage");
|
|
89
|
-
const simpifySquareRoot_1 = require("./squareRoots/simpifySquareRoot");
|
|
90
|
-
const rectangleArea_1 = require("./geometry/euclidean/rectangleArea");
|
|
91
|
-
const rectanglePerimeter_1 = require("./geometry/euclidean/rectanglePerimeter");
|
|
92
|
-
const squareArea_1 = require("./geometry/euclidean/squareArea");
|
|
93
|
-
const squarePerimeter_1 = require("./geometry/euclidean/squarePerimeter");
|
|
94
|
-
const trianglePerimeter_1 = require("./geometry/euclidean/trianglePerimeter");
|
|
95
|
-
const triangleAreaV2_1 = require("./geometry/euclidean/triangleAreaV2");
|
|
96
|
-
const circleArea_1 = require("./geometry/euclidean/circleArea");
|
|
97
|
-
const circleCircumference_1 = require("./geometry/euclidean/circleCircumference");
|
|
98
|
-
const distanceBetweenTwoPoints_1 = require("./geometry/cartesian/distanceBetweenTwoPoints");
|
|
99
|
-
const reduceExpression_1 = require("./calculLitteral/simplifying/reduceExpression");
|
|
100
|
-
const evaluateExpression_1 = require("./calculLitteral/simplifying/evaluateExpression");
|
|
101
|
-
const proportionalityTable_1 = require("./calcul/proportionality/proportionalityTable");
|
|
102
|
-
const imageFunction_1 = require("./functions/basics/imageFunction");
|
|
103
|
-
const triangleArea_1 = require("./geometry/euclidean/triangleArea");
|
|
104
|
-
const lnDerivativeOne_1 = require("./derivation/derivative/lnDerivativeOne");
|
|
105
|
-
const lnDerivativeTwo_1 = require("./derivation/derivative/lnDerivativeTwo");
|
|
106
|
-
const lnDerivativeThree_1 = require("./derivation/derivative/lnDerivativeThree");
|
|
107
|
-
const expDerivativeOne_1 = require("./derivation/derivative/expDerivativeOne");
|
|
108
|
-
const expDerivativeTwo_1 = require("./derivation/derivative/expDerivativeTwo");
|
|
109
|
-
const expDerivativeThree_1 = require("./derivation/derivative/expDerivativeThree");
|
|
110
|
-
const logEquation_1 = require("./calculLitteral/equation/logEquation");
|
|
111
|
-
const expEquation_1 = require("./calculLitteral/equation/expEquation");
|
|
112
|
-
const expSimplifiying_1 = require("./calculLitteral/simplifying/expSimplifiying");
|
|
113
|
-
const logSimplifiying_1 = require("./calculLitteral/simplifying/logSimplifiying");
|
|
114
|
-
const quartiles_1 = require("../exercises/probaStat/quartiles");
|
|
115
|
-
const quartilesList_1 = require("../exercises/probaStat/quartilesList");
|
|
116
|
-
const euclideanDivision_1 = require("../exercises/calcul/arithmetics/euclideanDivision");
|
|
117
|
-
const thirdDegreeFunctionVariation_1 = require("../exercises/derivation/derivative/thirdDegreeFunctionVariation");
|
|
118
|
-
const polynomeLimit_1 = require("../exercises/limits/polynomeLimit");
|
|
119
|
-
const constantPrimitive_1 = require("../exercises/primitve/constantPrimitive");
|
|
120
|
-
const polynomialPrimitive_1 = require("../exercises/primitve/polynomialPrimitive");
|
|
121
|
-
const sinCosPrimitive_1 = require("../exercises/primitve/sinCosPrimitive");
|
|
122
|
-
const exponentialPrimitive_1 = require("../exercises/primitve/exponentialPrimitive");
|
|
123
|
-
const logarithmePrimitive_1 = require("../exercises/primitve/logarithmePrimitive");
|
|
124
|
-
const usualPrimitives_1 = require("../exercises/primitve/usualPrimitives");
|
|
125
|
-
const equaDiffGeneralForme_1 = require("../exercises/equaDiff/equaDiffGeneralForme");
|
|
126
|
-
const equaDiffGeneralFormeWithIC_1 = require("../exercises/equaDiff/equaDiffGeneralFormeWithIC");
|
|
127
|
-
const mainRemarkableValues_1 = require("./trigonometry/mainRemarkableValues");
|
|
128
|
-
const remarkableValues_1 = require("./trigonometry/remarkableValues");
|
|
129
|
-
const leadingCoefficientCalculV1_1 = require("./functions/affines/leadingCoefficientCalculV1");
|
|
130
|
-
const leadingCoefficientCalculV2_1 = require("./functions/affines/leadingCoefficientCalculV2");
|
|
131
|
-
const inverseImageFunction_1 = require("./functions/basics/inverseImageFunction");
|
|
132
|
-
const imageFunctionGeogebra_1 = require("./functions/basics/imageFunctionGeogebra");
|
|
133
|
-
const inverseImageFunctionGeogebra_1 = require("./functions/basics/inverseImageFunctionGeogebra");
|
|
134
|
-
const signFunction_1 = require("./functions/affines/signFunction");
|
|
135
|
-
const alphaBetaInCanonicalForm_1 = require("./functions/trinoms/alphaBetaInCanonicalForm");
|
|
136
|
-
const canonicalFromDevForm_1 = require("./functions/trinoms/canonicalFromDevForm");
|
|
137
|
-
const alphaBetaFromDevForm_1 = require("./functions/trinoms/alphaBetaFromDevForm");
|
|
138
|
-
const extremumFromCanonicalForm_1 = require("./functions/trinoms/extremumFromCanonicalForm");
|
|
139
|
-
const extremumTypeFromAlgebricForm_1 = require("./functions/trinoms/extremumTypeFromAlgebricForm");
|
|
140
|
-
const variationsFromAlgebricForm_1 = require("./functions/trinoms/variationsFromAlgebricForm");
|
|
141
|
-
const mutiplyComplex_1 = require("./complex/mutiplyComplex");
|
|
142
|
-
const reAndIm_1 = require("./complex/reAndIm");
|
|
143
|
-
const addComplex_1 = require("./complex/addComplex");
|
|
144
|
-
const averageWithTable_1 = require("./probaStat/averageWithTable");
|
|
145
|
-
const medianList_1 = require("./probaStat/medianList");
|
|
146
|
-
const median_1 = require("./probaStat/median");
|
|
147
|
-
const conjugateComplex_ts_1 = require("./complex/conjugateComplex.ts");
|
|
148
|
-
const conjugateMultiplyComplex_1 = require("./complex/conjugateMultiplyComplex");
|
|
149
|
-
const inverseComplex_1 = require("./complex/inverseComplex");
|
|
150
|
-
const divideComplex_1 = require("./complex/divideComplex");
|
|
151
|
-
const conjugateDivideComplex_1 = require("./complex/conjugateDivideComplex");
|
|
152
|
-
exports.exercises = [
|
|
153
|
-
/**
|
|
154
|
-
* calcul litteral
|
|
155
|
-
*/
|
|
156
|
-
factoType1Exercise_1.factoType1Exercise,
|
|
157
|
-
factoIdRmq1_1.factoIdRmq1,
|
|
158
|
-
factoIdRmq2_1.factoIdRmq2,
|
|
159
|
-
factoIdRmq3_1.factoIdRmq3,
|
|
160
|
-
simpleDistributivity_1.simpleDistributivity,
|
|
161
|
-
doubleDistributivity_1.doubleDistributivity,
|
|
162
|
-
firstIdentity_1.firstIdentity,
|
|
163
|
-
secondIdentity_1.secondIdentity,
|
|
164
|
-
thirdIdentity_1.thirdIdentity,
|
|
165
|
-
allIdentities_1.allIdentities,
|
|
166
|
-
/**
|
|
167
|
-
* equations
|
|
168
|
-
*/
|
|
169
|
-
equationType1Exercise_1.equationType1Exercise,
|
|
170
|
-
equationType2Exercise_1.equationType2Exercise,
|
|
171
|
-
equationType3Exercise_1.equationType3Exercise,
|
|
172
|
-
equationType4Exercise_1.equationType4Exercise,
|
|
173
|
-
firstDegreeEquation_1.firstDegreeEquation,
|
|
174
|
-
equationSimpleSquare_1.equationSimpleSquare,
|
|
175
|
-
/**
|
|
176
|
-
* square roots
|
|
177
|
-
*/
|
|
178
|
-
simpifySquareRoot_1.simplifySquareRoot,
|
|
179
|
-
/**
|
|
180
|
-
* fractions
|
|
181
|
-
*/
|
|
182
|
-
fractionAndIntegerDivision_1.fractionAndIntegerDivision,
|
|
183
|
-
fractionAndIntegerProduct_1.fractionAndIntegerProduct,
|
|
184
|
-
fractionAndIntegerSum_1.fractionAndIntegerSum,
|
|
185
|
-
fractionsDivision_1.fractionsDivision,
|
|
186
|
-
fractionsProduct_1.fractionsProduct,
|
|
187
|
-
fractionsSum_1.fractionsSum,
|
|
188
|
-
simplifyFraction_1.simplifyFraction,
|
|
189
|
-
/**
|
|
190
|
-
* calcul
|
|
191
|
-
*/
|
|
192
|
-
addAndSub_1.addAndSubExercise,
|
|
193
|
-
addAndSubWithoutRelatives_1.addAndSubWithoutRelatives,
|
|
194
|
-
operationsPriorities_1.operationsPriorities,
|
|
195
|
-
operationsPrioritiesWithoutRelative_1.operationsPrioritiesWithoutRelative,
|
|
196
|
-
/**
|
|
197
|
-
* rounding
|
|
198
|
-
*/
|
|
199
|
-
rounding_1.roundToCentieme,
|
|
200
|
-
rounding_1.roundToDixieme,
|
|
201
|
-
rounding_1.roundToMillieme,
|
|
202
|
-
rounding_1.roundToUnit,
|
|
203
|
-
rounding_1.allRoundings,
|
|
204
|
-
/**
|
|
205
|
-
* geometry
|
|
206
|
-
*/
|
|
207
|
-
midpoint_1.midpoint,
|
|
208
|
-
mainRemarkableValues_1.mainRemarkableValuesExercise,
|
|
209
|
-
remarkableValues_1.remarkableValuesExercise,
|
|
210
|
-
/**
|
|
211
|
-
* vectors
|
|
212
|
-
*/
|
|
213
|
-
scalarProductViaCoords_1.scalarProductViaCoords,
|
|
214
|
-
/**
|
|
215
|
-
* puissances
|
|
216
|
-
*/
|
|
217
|
-
powersDivision_1.powersDivision,
|
|
218
|
-
powersPower_1.powersPower,
|
|
219
|
-
powersProduct_1.powersProduct,
|
|
220
|
-
powersDivision_1.powersOfTenDivision,
|
|
221
|
-
powersPower_1.powersOfTenPower,
|
|
222
|
-
powersProduct_1.powersOfTenProduct,
|
|
223
|
-
scientificToDecimal_1.scientificToDecimal,
|
|
224
|
-
powersOfTenToDecimal_1.powersOfTenToDecimal,
|
|
225
|
-
/**
|
|
226
|
-
* suites
|
|
227
|
-
*/
|
|
228
|
-
geometricExplicitFormulaUsage_1.geometricExplicitFormulaUsage,
|
|
229
|
-
geometricFindReason_1.geometricFindReason,
|
|
230
|
-
geometricFindExplicitFormula_1.geometricFindExplicitFormula,
|
|
231
|
-
geometricReasonUsage_1.geometricReasonUsage,
|
|
232
|
-
geometricRecurrenceFormulaUsage_1.geometricRecurrenceFormulaUsage,
|
|
233
|
-
arithmeticExplicitFormulaUsage_1.arithmeticExplicitFormulaUsage,
|
|
234
|
-
arithmeticFindExplicitFormula_1.arithmeticFindExplicitFormula,
|
|
235
|
-
arithmeticFindReason_1.arithmeticFindReason,
|
|
236
|
-
arithmeticReasonUsage_1.arithmeticReasonUsage,
|
|
237
|
-
arithmeticRecurrenceFormulaUsage_1.arithmeticRecurrenceFormulaUsage,
|
|
238
|
-
arithmeticThresholdFind_1.arithmeticThresholdFind,
|
|
239
|
-
/**
|
|
240
|
-
* islam
|
|
241
|
-
*/
|
|
242
|
-
applyPercent_1.applyPercent,
|
|
243
|
-
globalPercent_1.globalPercent,
|
|
244
|
-
reciprocalPercentage_1.reciprocalPercentage,
|
|
245
|
-
averageEvolutionRate_1.averageEvolutionRate,
|
|
246
|
-
usualderivative_1.usualDerivative,
|
|
247
|
-
constanteDerivative_1.constanteDerivative,
|
|
248
|
-
firstDegreeDerivative_1.firstDegreeDerivative,
|
|
249
|
-
secondDegreeDerivative_1.secondDegreeDerivative,
|
|
250
|
-
thirdDegreeDerivative_1.thirdDegreeDerivative,
|
|
251
|
-
inverseFunctionDerivative_1.inverseFunctionDerivative,
|
|
252
|
-
rootFunctionDerivative_1.rootFunctionDerivative,
|
|
253
|
-
powerFunctionDerivative_1.powerFunctionDerivative,
|
|
254
|
-
conditionalProbability_1.conditionalProbability,
|
|
255
|
-
leadingCoefficient_1.leadingCoefficient,
|
|
256
|
-
derivativeNumberReading_1.derivativeNumberReading,
|
|
257
|
-
probabilityTree_1.probabilityTree,
|
|
258
|
-
fractionToPercentToDecimal_1.fractionToPercentToDecimal,
|
|
259
|
-
marginalAndConditionalFrequency_1.marginalAndConditionalFrequency,
|
|
260
|
-
mentalAddAndSub_1.mentalAddAndSub,
|
|
261
|
-
mentalMultiplications_1.mentalMultiplications,
|
|
262
|
-
mentalDivisions_1.mentalDivisions,
|
|
263
|
-
mentalPercentage_1.mentalPercentage,
|
|
264
|
-
thales_1.thales,
|
|
265
|
-
thalesCalcul_1.thalesCalcul,
|
|
266
|
-
pythagore_1.pythagore,
|
|
267
|
-
pythagoreCalcul_1.pythagoreCalcul,
|
|
268
|
-
trigonometry_1.trigonometry,
|
|
269
|
-
trigonometryAngleCalcul_1.trigonometryAngleCalcul,
|
|
270
|
-
trigonometrySideCalcul_1.trigonometrySideCalcul,
|
|
271
|
-
rightTriangleArea_1.rightTriangleArea,
|
|
272
|
-
triangleArea_1.triangleArea,
|
|
273
|
-
/**
|
|
274
|
-
* nv generateurs
|
|
275
|
-
*/
|
|
276
|
-
capacityConversion_1.capacityConversion,
|
|
277
|
-
lengthConversion_1.lengthConversion,
|
|
278
|
-
massConversion_1.massConversion,
|
|
279
|
-
aeraConversion_1.aeraConversion,
|
|
280
|
-
volumeConversion_1.volumeConversion,
|
|
281
|
-
volumeCapacityConversion_1.volumeCapacityConversion,
|
|
282
|
-
primeNumbers_1.primeNumbers,
|
|
283
|
-
multiplicationEquation_1.multiplicationEquation,
|
|
284
|
-
fractionEquation_1.fractionEquation,
|
|
285
|
-
leadingCoefficientCalculV1_1.leadingCoefficientCalculV1,
|
|
286
|
-
leadingCoefficientCalculV2_1.leadingCoefficientCalculV2,
|
|
287
|
-
rectangleArea_1.rectangleArea,
|
|
288
|
-
rectanglePerimeter_1.rectanglePerimeter,
|
|
289
|
-
squareArea_1.squareArea,
|
|
290
|
-
squarePerimeter_1.squarePerimeter,
|
|
291
|
-
triangleAreaV2_1.triangleAreaV2,
|
|
292
|
-
trianglePerimeter_1.trianglePerimeter,
|
|
293
|
-
circleArea_1.circleArea,
|
|
294
|
-
circleCircumference_1.circleCircumference,
|
|
295
|
-
distanceBetweenTwoPoints_1.distanceBetweenTwoPoints,
|
|
296
|
-
reduceExpression_1.reduceExpression,
|
|
297
|
-
evaluateExpression_1.evaluateExpression,
|
|
298
|
-
proportionalityTable_1.proportionalityTable,
|
|
299
|
-
imageFunction_1.imageFunction,
|
|
300
|
-
inverseImageFunction_1.inverseImageFunction,
|
|
301
|
-
lnDerivativeOne_1.lnDerivativeOne,
|
|
302
|
-
lnDerivativeTwo_1.lnDerivativeTwo,
|
|
303
|
-
lnDerivativeThree_1.lnDerivativeThree,
|
|
304
|
-
expDerivativeOne_1.expDerivativeOne,
|
|
305
|
-
expDerivativeTwo_1.expDerivativeTwo,
|
|
306
|
-
expDerivativeThree_1.expDerivativeThree,
|
|
307
|
-
logEquation_1.logEquation,
|
|
308
|
-
expEquation_1.expEquation,
|
|
309
|
-
expSimplifiying_1.expSimplifiying,
|
|
310
|
-
logSimplifiying_1.logSimplifiying,
|
|
311
|
-
imageFunctionGeogebra_1.imageFunctionGeogebra,
|
|
312
|
-
inverseImageFunctionGeogebra_1.inverseImageFunctionGeogebra,
|
|
313
|
-
euclideanDivision_1.euclideanDivision,
|
|
314
|
-
signFunction_1.signFunction,
|
|
315
|
-
thirdDegreeFunctionVariation_1.thirdDegreeFunctionVariation,
|
|
316
|
-
polynomeLimit_1.polynomeLimit,
|
|
317
|
-
constantPrimitive_1.constantPrimitive,
|
|
318
|
-
polynomialPrimitive_1.polynomialPrimitive,
|
|
319
|
-
sinCosPrimitive_1.sinCosPrimitive,
|
|
320
|
-
exponentialPrimitive_1.exponentialPrimitive,
|
|
321
|
-
logarithmePrimitive_1.logarithmePrimitive,
|
|
322
|
-
usualPrimitives_1.usualPrimitives,
|
|
323
|
-
equaDiffGeneralForme_1.exponentialDifferentialEquation,
|
|
324
|
-
equaDiffGeneralFormeWithIC_1.exponentialDifferentialEquationWithIC,
|
|
325
|
-
/**Stats */
|
|
326
|
-
averageWithTable_1.averageWithTable,
|
|
327
|
-
medianList_1.medianWithList,
|
|
328
|
-
quartiles_1.quartiles,
|
|
329
|
-
median_1.medianWithTable,
|
|
330
|
-
quartilesList_1.quartilesList,
|
|
331
|
-
/**Trinomes */
|
|
332
|
-
alphaBetaInCanonicalForm_1.alphaBetaInCanonicalForm,
|
|
333
|
-
canonicalFromDevForm_1.canonicalFromDevForm,
|
|
334
|
-
alphaBetaFromDevForm_1.alphaBetaFromDevForm,
|
|
335
|
-
extremumFromCanonicalForm_1.extremumFromCanonicalForm,
|
|
336
|
-
extremumTypeFromAlgebricForm_1.extremumTypeFromAlgebricForm,
|
|
337
|
-
variationsFromAlgebricForm_1.variationsFromAlgebricForm,
|
|
338
|
-
/**Complexes */
|
|
339
|
-
mutiplyComplex_1.mutiplyComplex,
|
|
340
|
-
reAndIm_1.reAndIm,
|
|
341
|
-
addComplex_1.addComplex,
|
|
342
|
-
conjugateComplex_ts_1.conjugateComplex,
|
|
343
|
-
conjugateMultiplyComplex_1.conjugateMultiplyComplex,
|
|
344
|
-
inverseComplex_1.inverseComplex,
|
|
345
|
-
divideComplex_1.divideComplex,
|
|
346
|
-
conjugateDivideComplex_1.conjugateDivideComplex,
|
|
347
|
-
];
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.exercises = void 0;
|
|
4
|
+
const addAndSub_1 = require("./calcul/addAndSub");
|
|
5
|
+
const addAndSubWithoutRelatives_1 = require("./calcul/addAndSubWithoutRelatives");
|
|
6
|
+
const fractionAndIntegerDivision_1 = require("./calcul/fractions/fractionAndIntegerDivision");
|
|
7
|
+
const fractionAndIntegerProduct_1 = require("./calcul/fractions/fractionAndIntegerProduct");
|
|
8
|
+
const fractionAndIntegerSum_1 = require("./calcul/fractions/fractionAndIntegerSum");
|
|
9
|
+
const fractionToPercentToDecimal_1 = require("./calcul/fractions/fractionToPercentToDecimal");
|
|
10
|
+
const fractionsDivision_1 = require("./calcul/fractions/fractionsDivision");
|
|
11
|
+
const fractionsProduct_1 = require("./calcul/fractions/fractionsProduct");
|
|
12
|
+
const fractionsSum_1 = require("./calcul/fractions/fractionsSum");
|
|
13
|
+
const simplifyFraction_1 = require("./calcul/fractions/simplifyFraction");
|
|
14
|
+
const mentalAddAndSub_1 = require("./calcul/mentalCaluls.ts/mentalAddAndSub");
|
|
15
|
+
const mentalDivisions_1 = require("./calcul/mentalCaluls.ts/mentalDivisions");
|
|
16
|
+
const mentalMultiplications_1 = require("./calcul/mentalCaluls.ts/mentalMultiplications");
|
|
17
|
+
const mentalPercentage_1 = require("./calcul/mentalCaluls.ts/mentalPercentage");
|
|
18
|
+
const operationsPriorities_1 = require("./calcul/operations/operationsPriorities");
|
|
19
|
+
const operationsPrioritiesWithoutRelative_1 = require("./calcul/operations/operationsPrioritiesWithoutRelative");
|
|
20
|
+
const primeNumbers_1 = require("./calcul/arithmetics/primeNumbers");
|
|
21
|
+
const rounding_1 = require("./calcul/rounding/rounding");
|
|
22
|
+
const allIdentities_1 = require("./calculLitteral/distributivity/allIdentities");
|
|
23
|
+
const doubleDistributivity_1 = require("./calculLitteral/distributivity/doubleDistributivity");
|
|
24
|
+
const firstIdentity_1 = require("./calculLitteral/distributivity/firstIdentity");
|
|
25
|
+
const secondIdentity_1 = require("./calculLitteral/distributivity/secondIdentity");
|
|
26
|
+
const simpleDistributivity_1 = require("./calculLitteral/distributivity/simpleDistributivity");
|
|
27
|
+
const thirdIdentity_1 = require("./calculLitteral/distributivity/thirdIdentity");
|
|
28
|
+
const equationSimpleSquare_1 = require("./calculLitteral/equation/equationSimpleSquare");
|
|
29
|
+
const equationType1Exercise_1 = require("./calculLitteral/equation/equationType1Exercise");
|
|
30
|
+
const equationType2Exercise_1 = require("./calculLitteral/equation/equationType2Exercise");
|
|
31
|
+
const equationType3Exercise_1 = require("./calculLitteral/equation/equationType3Exercise");
|
|
32
|
+
const equationType4Exercise_1 = require("./calculLitteral/equation/equationType4Exercise");
|
|
33
|
+
const firstDegreeEquation_1 = require("./calculLitteral/equation/firstDegreeEquation");
|
|
34
|
+
const fractionEquation_1 = require("./calculLitteral/equation/fractionEquation");
|
|
35
|
+
const multiplicationEquation_1 = require("./calculLitteral/equation/multiplicationEquation");
|
|
36
|
+
const factoIdRmq1_1 = require("./calculLitteral/factorisation/factoIdRmq1");
|
|
37
|
+
const factoIdRmq2_1 = require("./calculLitteral/factorisation/factoIdRmq2");
|
|
38
|
+
const factoIdRmq3_1 = require("./calculLitteral/factorisation/factoIdRmq3");
|
|
39
|
+
const factoType1Exercise_1 = require("./calculLitteral/factorisation/factoType1Exercise");
|
|
40
|
+
const aeraConversion_1 = require("./conversion/aeraConversion");
|
|
41
|
+
const capacityConversion_1 = require("./conversion/capacityConversion");
|
|
42
|
+
const lengthConversion_1 = require("./conversion/lengthConversion");
|
|
43
|
+
const massConversion_1 = require("./conversion/massConversion");
|
|
44
|
+
const volumeCapacityConversion_1 = require("./conversion/volumeCapacityConversion");
|
|
45
|
+
const volumeConversion_1 = require("./conversion/volumeConversion");
|
|
46
|
+
const constanteDerivative_1 = require("./derivation/derivative/constanteDerivative");
|
|
47
|
+
const firstDegreeDerivative_1 = require("./derivation/derivative/firstDegreeDerivative");
|
|
48
|
+
const inverseFunctionDerivative_1 = require("./derivation/derivative/inverseFunctionDerivative");
|
|
49
|
+
const powerFunctionDerivative_1 = require("./derivation/derivative/powerFunctionDerivative");
|
|
50
|
+
const rootFunctionDerivative_1 = require("./derivation/derivative/rootFunctionDerivative");
|
|
51
|
+
const secondDegreeDerivative_1 = require("./derivation/derivative/secondDegreeDerivative");
|
|
52
|
+
const thirdDegreeDerivative_1 = require("./derivation/derivative/thirdDegreeDerivative");
|
|
53
|
+
const usualderivative_1 = require("./derivation/derivative/usualderivative");
|
|
54
|
+
const derivativeNumberReading_1 = require("./derivation/derivativeNumberReading");
|
|
55
|
+
const leadingCoefficient_1 = require("./functions/affines/leadingCoefficient");
|
|
56
|
+
const midpoint_1 = require("./geometry/cartesian/midpoint");
|
|
57
|
+
const pythagore_1 = require("./geometry/euclidean/pythagore");
|
|
58
|
+
const pythagoreCalcul_1 = require("./geometry/euclidean/pythagoreCalcul");
|
|
59
|
+
const rightTriangleArea_1 = require("./geometry/euclidean/rightTriangleArea");
|
|
60
|
+
const thales_1 = require("./geometry/euclidean/thales");
|
|
61
|
+
const thalesCalcul_1 = require("./geometry/euclidean/thalesCalcul");
|
|
62
|
+
const trigonometry_1 = require("./geometry/euclidean/trigonometry");
|
|
63
|
+
const trigonometryAngleCalcul_1 = require("./geometry/euclidean/trigonometryAngleCalcul");
|
|
64
|
+
const trigonometrySideCalcul_1 = require("./geometry/euclidean/trigonometrySideCalcul");
|
|
65
|
+
const scalarProductViaCoords_1 = require("./geometry/vectors/scalarProductViaCoords");
|
|
66
|
+
const applyPercent_1 = require("./percent/applyPercent");
|
|
67
|
+
const averageEvolutionRate_1 = require("./percent/averageEvolutionRate");
|
|
68
|
+
const globalPercent_1 = require("./percent/globalPercent");
|
|
69
|
+
const reciprocalPercentage_1 = require("./percent/reciprocalPercentage");
|
|
70
|
+
const powersDivision_1 = require("./powers/powersDivision");
|
|
71
|
+
const powersOfTenToDecimal_1 = require("./powers/powersOfTenToDecimal");
|
|
72
|
+
const powersPower_1 = require("./powers/powersPower");
|
|
73
|
+
const powersProduct_1 = require("./powers/powersProduct");
|
|
74
|
+
const scientificToDecimal_1 = require("./powers/scientificToDecimal");
|
|
75
|
+
const conditionalProbability_1 = require("./probaStat/conditionalProbability");
|
|
76
|
+
const marginalAndConditionalFrequency_1 = require("./probaStat/marginalAndConditionalFrequency");
|
|
77
|
+
const probabilityTree_1 = require("./probaStat/probabilityTree");
|
|
78
|
+
const arithmeticExplicitFormulaUsage_1 = require("./sequences/arithmetic/arithmeticExplicitFormulaUsage");
|
|
79
|
+
const arithmeticFindExplicitFormula_1 = require("./sequences/arithmetic/arithmeticFindExplicitFormula");
|
|
80
|
+
const arithmeticFindReason_1 = require("./sequences/arithmetic/arithmeticFindReason");
|
|
81
|
+
const arithmeticReasonUsage_1 = require("./sequences/arithmetic/arithmeticReasonUsage");
|
|
82
|
+
const arithmeticRecurrenceFormulaUsage_1 = require("./sequences/arithmetic/arithmeticRecurrenceFormulaUsage");
|
|
83
|
+
const arithmeticThresholdFind_1 = require("./sequences/arithmetic/arithmeticThresholdFind");
|
|
84
|
+
const geometricExplicitFormulaUsage_1 = require("./sequences/geometric/geometricExplicitFormulaUsage");
|
|
85
|
+
const geometricFindExplicitFormula_1 = require("./sequences/geometric/geometricFindExplicitFormula");
|
|
86
|
+
const geometricFindReason_1 = require("./sequences/geometric/geometricFindReason");
|
|
87
|
+
const geometricReasonUsage_1 = require("./sequences/geometric/geometricReasonUsage");
|
|
88
|
+
const geometricRecurrenceFormulaUsage_1 = require("./sequences/geometric/geometricRecurrenceFormulaUsage");
|
|
89
|
+
const simpifySquareRoot_1 = require("./squareRoots/simpifySquareRoot");
|
|
90
|
+
const rectangleArea_1 = require("./geometry/euclidean/rectangleArea");
|
|
91
|
+
const rectanglePerimeter_1 = require("./geometry/euclidean/rectanglePerimeter");
|
|
92
|
+
const squareArea_1 = require("./geometry/euclidean/squareArea");
|
|
93
|
+
const squarePerimeter_1 = require("./geometry/euclidean/squarePerimeter");
|
|
94
|
+
const trianglePerimeter_1 = require("./geometry/euclidean/trianglePerimeter");
|
|
95
|
+
const triangleAreaV2_1 = require("./geometry/euclidean/triangleAreaV2");
|
|
96
|
+
const circleArea_1 = require("./geometry/euclidean/circleArea");
|
|
97
|
+
const circleCircumference_1 = require("./geometry/euclidean/circleCircumference");
|
|
98
|
+
const distanceBetweenTwoPoints_1 = require("./geometry/cartesian/distanceBetweenTwoPoints");
|
|
99
|
+
const reduceExpression_1 = require("./calculLitteral/simplifying/reduceExpression");
|
|
100
|
+
const evaluateExpression_1 = require("./calculLitteral/simplifying/evaluateExpression");
|
|
101
|
+
const proportionalityTable_1 = require("./calcul/proportionality/proportionalityTable");
|
|
102
|
+
const imageFunction_1 = require("./functions/basics/imageFunction");
|
|
103
|
+
const triangleArea_1 = require("./geometry/euclidean/triangleArea");
|
|
104
|
+
const lnDerivativeOne_1 = require("./derivation/derivative/lnDerivativeOne");
|
|
105
|
+
const lnDerivativeTwo_1 = require("./derivation/derivative/lnDerivativeTwo");
|
|
106
|
+
const lnDerivativeThree_1 = require("./derivation/derivative/lnDerivativeThree");
|
|
107
|
+
const expDerivativeOne_1 = require("./derivation/derivative/expDerivativeOne");
|
|
108
|
+
const expDerivativeTwo_1 = require("./derivation/derivative/expDerivativeTwo");
|
|
109
|
+
const expDerivativeThree_1 = require("./derivation/derivative/expDerivativeThree");
|
|
110
|
+
const logEquation_1 = require("./calculLitteral/equation/logEquation");
|
|
111
|
+
const expEquation_1 = require("./calculLitteral/equation/expEquation");
|
|
112
|
+
const expSimplifiying_1 = require("./calculLitteral/simplifying/expSimplifiying");
|
|
113
|
+
const logSimplifiying_1 = require("./calculLitteral/simplifying/logSimplifiying");
|
|
114
|
+
const quartiles_1 = require("../exercises/probaStat/quartiles");
|
|
115
|
+
const quartilesList_1 = require("../exercises/probaStat/quartilesList");
|
|
116
|
+
const euclideanDivision_1 = require("../exercises/calcul/arithmetics/euclideanDivision");
|
|
117
|
+
const thirdDegreeFunctionVariation_1 = require("../exercises/derivation/derivative/thirdDegreeFunctionVariation");
|
|
118
|
+
const polynomeLimit_1 = require("../exercises/limits/polynomeLimit");
|
|
119
|
+
const constantPrimitive_1 = require("../exercises/primitve/constantPrimitive");
|
|
120
|
+
const polynomialPrimitive_1 = require("../exercises/primitve/polynomialPrimitive");
|
|
121
|
+
const sinCosPrimitive_1 = require("../exercises/primitve/sinCosPrimitive");
|
|
122
|
+
const exponentialPrimitive_1 = require("../exercises/primitve/exponentialPrimitive");
|
|
123
|
+
const logarithmePrimitive_1 = require("../exercises/primitve/logarithmePrimitive");
|
|
124
|
+
const usualPrimitives_1 = require("../exercises/primitve/usualPrimitives");
|
|
125
|
+
const equaDiffGeneralForme_1 = require("../exercises/equaDiff/equaDiffGeneralForme");
|
|
126
|
+
const equaDiffGeneralFormeWithIC_1 = require("../exercises/equaDiff/equaDiffGeneralFormeWithIC");
|
|
127
|
+
const mainRemarkableValues_1 = require("./trigonometry/mainRemarkableValues");
|
|
128
|
+
const remarkableValues_1 = require("./trigonometry/remarkableValues");
|
|
129
|
+
const leadingCoefficientCalculV1_1 = require("./functions/affines/leadingCoefficientCalculV1");
|
|
130
|
+
const leadingCoefficientCalculV2_1 = require("./functions/affines/leadingCoefficientCalculV2");
|
|
131
|
+
const inverseImageFunction_1 = require("./functions/basics/inverseImageFunction");
|
|
132
|
+
const imageFunctionGeogebra_1 = require("./functions/basics/imageFunctionGeogebra");
|
|
133
|
+
const inverseImageFunctionGeogebra_1 = require("./functions/basics/inverseImageFunctionGeogebra");
|
|
134
|
+
const signFunction_1 = require("./functions/affines/signFunction");
|
|
135
|
+
const alphaBetaInCanonicalForm_1 = require("./functions/trinoms/alphaBetaInCanonicalForm");
|
|
136
|
+
const canonicalFromDevForm_1 = require("./functions/trinoms/canonicalFromDevForm");
|
|
137
|
+
const alphaBetaFromDevForm_1 = require("./functions/trinoms/alphaBetaFromDevForm");
|
|
138
|
+
const extremumFromCanonicalForm_1 = require("./functions/trinoms/extremumFromCanonicalForm");
|
|
139
|
+
const extremumTypeFromAlgebricForm_1 = require("./functions/trinoms/extremumTypeFromAlgebricForm");
|
|
140
|
+
const variationsFromAlgebricForm_1 = require("./functions/trinoms/variationsFromAlgebricForm");
|
|
141
|
+
const mutiplyComplex_1 = require("./complex/mutiplyComplex");
|
|
142
|
+
const reAndIm_1 = require("./complex/reAndIm");
|
|
143
|
+
const addComplex_1 = require("./complex/addComplex");
|
|
144
|
+
const averageWithTable_1 = require("./probaStat/averageWithTable");
|
|
145
|
+
const medianList_1 = require("./probaStat/medianList");
|
|
146
|
+
const median_1 = require("./probaStat/median");
|
|
147
|
+
const conjugateComplex_ts_1 = require("./complex/conjugateComplex.ts");
|
|
148
|
+
const conjugateMultiplyComplex_1 = require("./complex/conjugateMultiplyComplex");
|
|
149
|
+
const inverseComplex_1 = require("./complex/inverseComplex");
|
|
150
|
+
const divideComplex_1 = require("./complex/divideComplex");
|
|
151
|
+
const conjugateDivideComplex_1 = require("./complex/conjugateDivideComplex");
|
|
152
|
+
exports.exercises = [
|
|
153
|
+
/**
|
|
154
|
+
* calcul litteral
|
|
155
|
+
*/
|
|
156
|
+
factoType1Exercise_1.factoType1Exercise,
|
|
157
|
+
factoIdRmq1_1.factoIdRmq1,
|
|
158
|
+
factoIdRmq2_1.factoIdRmq2,
|
|
159
|
+
factoIdRmq3_1.factoIdRmq3,
|
|
160
|
+
simpleDistributivity_1.simpleDistributivity,
|
|
161
|
+
doubleDistributivity_1.doubleDistributivity,
|
|
162
|
+
firstIdentity_1.firstIdentity,
|
|
163
|
+
secondIdentity_1.secondIdentity,
|
|
164
|
+
thirdIdentity_1.thirdIdentity,
|
|
165
|
+
allIdentities_1.allIdentities,
|
|
166
|
+
/**
|
|
167
|
+
* equations
|
|
168
|
+
*/
|
|
169
|
+
equationType1Exercise_1.equationType1Exercise,
|
|
170
|
+
equationType2Exercise_1.equationType2Exercise,
|
|
171
|
+
equationType3Exercise_1.equationType3Exercise,
|
|
172
|
+
equationType4Exercise_1.equationType4Exercise,
|
|
173
|
+
firstDegreeEquation_1.firstDegreeEquation,
|
|
174
|
+
equationSimpleSquare_1.equationSimpleSquare,
|
|
175
|
+
/**
|
|
176
|
+
* square roots
|
|
177
|
+
*/
|
|
178
|
+
simpifySquareRoot_1.simplifySquareRoot,
|
|
179
|
+
/**
|
|
180
|
+
* fractions
|
|
181
|
+
*/
|
|
182
|
+
fractionAndIntegerDivision_1.fractionAndIntegerDivision,
|
|
183
|
+
fractionAndIntegerProduct_1.fractionAndIntegerProduct,
|
|
184
|
+
fractionAndIntegerSum_1.fractionAndIntegerSum,
|
|
185
|
+
fractionsDivision_1.fractionsDivision,
|
|
186
|
+
fractionsProduct_1.fractionsProduct,
|
|
187
|
+
fractionsSum_1.fractionsSum,
|
|
188
|
+
simplifyFraction_1.simplifyFraction,
|
|
189
|
+
/**
|
|
190
|
+
* calcul
|
|
191
|
+
*/
|
|
192
|
+
addAndSub_1.addAndSubExercise,
|
|
193
|
+
addAndSubWithoutRelatives_1.addAndSubWithoutRelatives,
|
|
194
|
+
operationsPriorities_1.operationsPriorities,
|
|
195
|
+
operationsPrioritiesWithoutRelative_1.operationsPrioritiesWithoutRelative,
|
|
196
|
+
/**
|
|
197
|
+
* rounding
|
|
198
|
+
*/
|
|
199
|
+
rounding_1.roundToCentieme,
|
|
200
|
+
rounding_1.roundToDixieme,
|
|
201
|
+
rounding_1.roundToMillieme,
|
|
202
|
+
rounding_1.roundToUnit,
|
|
203
|
+
rounding_1.allRoundings,
|
|
204
|
+
/**
|
|
205
|
+
* geometry
|
|
206
|
+
*/
|
|
207
|
+
midpoint_1.midpoint,
|
|
208
|
+
mainRemarkableValues_1.mainRemarkableValuesExercise,
|
|
209
|
+
remarkableValues_1.remarkableValuesExercise,
|
|
210
|
+
/**
|
|
211
|
+
* vectors
|
|
212
|
+
*/
|
|
213
|
+
scalarProductViaCoords_1.scalarProductViaCoords,
|
|
214
|
+
/**
|
|
215
|
+
* puissances
|
|
216
|
+
*/
|
|
217
|
+
powersDivision_1.powersDivision,
|
|
218
|
+
powersPower_1.powersPower,
|
|
219
|
+
powersProduct_1.powersProduct,
|
|
220
|
+
powersDivision_1.powersOfTenDivision,
|
|
221
|
+
powersPower_1.powersOfTenPower,
|
|
222
|
+
powersProduct_1.powersOfTenProduct,
|
|
223
|
+
scientificToDecimal_1.scientificToDecimal,
|
|
224
|
+
powersOfTenToDecimal_1.powersOfTenToDecimal,
|
|
225
|
+
/**
|
|
226
|
+
* suites
|
|
227
|
+
*/
|
|
228
|
+
geometricExplicitFormulaUsage_1.geometricExplicitFormulaUsage,
|
|
229
|
+
geometricFindReason_1.geometricFindReason,
|
|
230
|
+
geometricFindExplicitFormula_1.geometricFindExplicitFormula,
|
|
231
|
+
geometricReasonUsage_1.geometricReasonUsage,
|
|
232
|
+
geometricRecurrenceFormulaUsage_1.geometricRecurrenceFormulaUsage,
|
|
233
|
+
arithmeticExplicitFormulaUsage_1.arithmeticExplicitFormulaUsage,
|
|
234
|
+
arithmeticFindExplicitFormula_1.arithmeticFindExplicitFormula,
|
|
235
|
+
arithmeticFindReason_1.arithmeticFindReason,
|
|
236
|
+
arithmeticReasonUsage_1.arithmeticReasonUsage,
|
|
237
|
+
arithmeticRecurrenceFormulaUsage_1.arithmeticRecurrenceFormulaUsage,
|
|
238
|
+
arithmeticThresholdFind_1.arithmeticThresholdFind,
|
|
239
|
+
/**
|
|
240
|
+
* islam
|
|
241
|
+
*/
|
|
242
|
+
applyPercent_1.applyPercent,
|
|
243
|
+
globalPercent_1.globalPercent,
|
|
244
|
+
reciprocalPercentage_1.reciprocalPercentage,
|
|
245
|
+
averageEvolutionRate_1.averageEvolutionRate,
|
|
246
|
+
usualderivative_1.usualDerivative,
|
|
247
|
+
constanteDerivative_1.constanteDerivative,
|
|
248
|
+
firstDegreeDerivative_1.firstDegreeDerivative,
|
|
249
|
+
secondDegreeDerivative_1.secondDegreeDerivative,
|
|
250
|
+
thirdDegreeDerivative_1.thirdDegreeDerivative,
|
|
251
|
+
inverseFunctionDerivative_1.inverseFunctionDerivative,
|
|
252
|
+
rootFunctionDerivative_1.rootFunctionDerivative,
|
|
253
|
+
powerFunctionDerivative_1.powerFunctionDerivative,
|
|
254
|
+
conditionalProbability_1.conditionalProbability,
|
|
255
|
+
leadingCoefficient_1.leadingCoefficient,
|
|
256
|
+
derivativeNumberReading_1.derivativeNumberReading,
|
|
257
|
+
probabilityTree_1.probabilityTree,
|
|
258
|
+
fractionToPercentToDecimal_1.fractionToPercentToDecimal,
|
|
259
|
+
marginalAndConditionalFrequency_1.marginalAndConditionalFrequency,
|
|
260
|
+
mentalAddAndSub_1.mentalAddAndSub,
|
|
261
|
+
mentalMultiplications_1.mentalMultiplications,
|
|
262
|
+
mentalDivisions_1.mentalDivisions,
|
|
263
|
+
mentalPercentage_1.mentalPercentage,
|
|
264
|
+
thales_1.thales,
|
|
265
|
+
thalesCalcul_1.thalesCalcul,
|
|
266
|
+
pythagore_1.pythagore,
|
|
267
|
+
pythagoreCalcul_1.pythagoreCalcul,
|
|
268
|
+
trigonometry_1.trigonometry,
|
|
269
|
+
trigonometryAngleCalcul_1.trigonometryAngleCalcul,
|
|
270
|
+
trigonometrySideCalcul_1.trigonometrySideCalcul,
|
|
271
|
+
rightTriangleArea_1.rightTriangleArea,
|
|
272
|
+
triangleArea_1.triangleArea,
|
|
273
|
+
/**
|
|
274
|
+
* nv generateurs
|
|
275
|
+
*/
|
|
276
|
+
capacityConversion_1.capacityConversion,
|
|
277
|
+
lengthConversion_1.lengthConversion,
|
|
278
|
+
massConversion_1.massConversion,
|
|
279
|
+
aeraConversion_1.aeraConversion,
|
|
280
|
+
volumeConversion_1.volumeConversion,
|
|
281
|
+
volumeCapacityConversion_1.volumeCapacityConversion,
|
|
282
|
+
primeNumbers_1.primeNumbers,
|
|
283
|
+
multiplicationEquation_1.multiplicationEquation,
|
|
284
|
+
fractionEquation_1.fractionEquation,
|
|
285
|
+
leadingCoefficientCalculV1_1.leadingCoefficientCalculV1,
|
|
286
|
+
leadingCoefficientCalculV2_1.leadingCoefficientCalculV2,
|
|
287
|
+
rectangleArea_1.rectangleArea,
|
|
288
|
+
rectanglePerimeter_1.rectanglePerimeter,
|
|
289
|
+
squareArea_1.squareArea,
|
|
290
|
+
squarePerimeter_1.squarePerimeter,
|
|
291
|
+
triangleAreaV2_1.triangleAreaV2,
|
|
292
|
+
trianglePerimeter_1.trianglePerimeter,
|
|
293
|
+
circleArea_1.circleArea,
|
|
294
|
+
circleCircumference_1.circleCircumference,
|
|
295
|
+
distanceBetweenTwoPoints_1.distanceBetweenTwoPoints,
|
|
296
|
+
reduceExpression_1.reduceExpression,
|
|
297
|
+
evaluateExpression_1.evaluateExpression,
|
|
298
|
+
proportionalityTable_1.proportionalityTable,
|
|
299
|
+
imageFunction_1.imageFunction,
|
|
300
|
+
inverseImageFunction_1.inverseImageFunction,
|
|
301
|
+
lnDerivativeOne_1.lnDerivativeOne,
|
|
302
|
+
lnDerivativeTwo_1.lnDerivativeTwo,
|
|
303
|
+
lnDerivativeThree_1.lnDerivativeThree,
|
|
304
|
+
expDerivativeOne_1.expDerivativeOne,
|
|
305
|
+
expDerivativeTwo_1.expDerivativeTwo,
|
|
306
|
+
expDerivativeThree_1.expDerivativeThree,
|
|
307
|
+
logEquation_1.logEquation,
|
|
308
|
+
expEquation_1.expEquation,
|
|
309
|
+
expSimplifiying_1.expSimplifiying,
|
|
310
|
+
logSimplifiying_1.logSimplifiying,
|
|
311
|
+
imageFunctionGeogebra_1.imageFunctionGeogebra,
|
|
312
|
+
inverseImageFunctionGeogebra_1.inverseImageFunctionGeogebra,
|
|
313
|
+
euclideanDivision_1.euclideanDivision,
|
|
314
|
+
signFunction_1.signFunction,
|
|
315
|
+
thirdDegreeFunctionVariation_1.thirdDegreeFunctionVariation,
|
|
316
|
+
polynomeLimit_1.polynomeLimit,
|
|
317
|
+
constantPrimitive_1.constantPrimitive,
|
|
318
|
+
polynomialPrimitive_1.polynomialPrimitive,
|
|
319
|
+
sinCosPrimitive_1.sinCosPrimitive,
|
|
320
|
+
exponentialPrimitive_1.exponentialPrimitive,
|
|
321
|
+
logarithmePrimitive_1.logarithmePrimitive,
|
|
322
|
+
usualPrimitives_1.usualPrimitives,
|
|
323
|
+
equaDiffGeneralForme_1.exponentialDifferentialEquation,
|
|
324
|
+
equaDiffGeneralFormeWithIC_1.exponentialDifferentialEquationWithIC,
|
|
325
|
+
/**Stats */
|
|
326
|
+
averageWithTable_1.averageWithTable,
|
|
327
|
+
medianList_1.medianWithList,
|
|
328
|
+
quartiles_1.quartiles,
|
|
329
|
+
median_1.medianWithTable,
|
|
330
|
+
quartilesList_1.quartilesList,
|
|
331
|
+
/**Trinomes */
|
|
332
|
+
alphaBetaInCanonicalForm_1.alphaBetaInCanonicalForm,
|
|
333
|
+
canonicalFromDevForm_1.canonicalFromDevForm,
|
|
334
|
+
alphaBetaFromDevForm_1.alphaBetaFromDevForm,
|
|
335
|
+
extremumFromCanonicalForm_1.extremumFromCanonicalForm,
|
|
336
|
+
extremumTypeFromAlgebricForm_1.extremumTypeFromAlgebricForm,
|
|
337
|
+
variationsFromAlgebricForm_1.variationsFromAlgebricForm,
|
|
338
|
+
/**Complexes */
|
|
339
|
+
mutiplyComplex_1.mutiplyComplex,
|
|
340
|
+
reAndIm_1.reAndIm,
|
|
341
|
+
addComplex_1.addComplex,
|
|
342
|
+
conjugateComplex_ts_1.conjugateComplex,
|
|
343
|
+
conjugateMultiplyComplex_1.conjugateMultiplyComplex,
|
|
344
|
+
inverseComplex_1.inverseComplex,
|
|
345
|
+
divideComplex_1.divideComplex,
|
|
346
|
+
conjugateDivideComplex_1.conjugateDivideComplex,
|
|
347
|
+
];
|