math-exercises 3.0.157 → 3.0.159
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/lib/exercises/exercise.d.ts +7 -0
- package/lib/exercises/exercise.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/equation/exp/expOfAffineEquals1Equation.d.ts +14 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfAffineEquals1Equation.d.ts.map +1 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfAffineEquals1Equation.js +145 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfFEqualsExpOfGEquation.d.ts +16 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfFEqualsExpOfGEquation.d.ts.map +1 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfFEqualsExpOfGEquation.js +445 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfTrinomEquals1Equation.d.ts +15 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfTrinomEquals1Equation.d.ts.map +1 -0
- package/lib/exercises/math/calculLitteral/equation/exp/expOfTrinomEquals1Equation.js +371 -0
- package/lib/exercises/math/calculLitteral/equation/exp/index.d.ts +4 -0
- package/lib/exercises/math/calculLitteral/equation/exp/index.d.ts.map +1 -0
- package/lib/exercises/math/calculLitteral/equation/exp/index.js +3 -0
- package/lib/exercises/math/calculLitteral/equation/factorizeEquation.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/equation/factorizeEquation.js +8 -2
- package/lib/exercises/math/calculLitteral/equation/index.d.ts +1 -0
- package/lib/exercises/math/calculLitteral/equation/index.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/equation/index.js +1 -0
- package/lib/exercises/math/calculLitteral/equation/multiplicationEquation.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/equation/multiplicationEquation.js +27 -2
- package/lib/exercises/math/calculLitteral/equation/solveByFactorizingWithIdRmq3.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/equation/solveByFactorizingWithIdRmq3.js +0 -1
- package/lib/exercises/math/calculLitteral/equation/square/equationSquareWithSteps.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/equation/square/equationSquareWithSteps.js +0 -1
- package/lib/exercises/math/calculLitteral/inequations/exp/expOfFEqualsExpOfGInequation.d.ts +18 -0
- package/lib/exercises/math/calculLitteral/inequations/exp/expOfFEqualsExpOfGInequation.d.ts.map +1 -0
- package/lib/exercises/math/calculLitteral/inequations/exp/expOfFEqualsExpOfGInequation.js +444 -0
- package/lib/exercises/math/calculLitteral/inequations/exp/index.d.ts +2 -0
- package/lib/exercises/math/calculLitteral/inequations/exp/index.d.ts.map +1 -0
- package/lib/exercises/math/calculLitteral/inequations/exp/index.js +1 -0
- package/lib/exercises/math/calculLitteral/inequations/firstDegreeInequationsType3.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/inequations/firstDegreeInequationsType3.js +11 -5
- package/lib/exercises/math/calculLitteral/inequations/index.d.ts +1 -0
- package/lib/exercises/math/calculLitteral/inequations/index.d.ts.map +1 -1
- package/lib/exercises/math/calculLitteral/inequations/index.js +1 -0
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeFour.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeFour.js +91 -21
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeOne.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeOne.js +64 -15
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeThree.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeThree.js +71 -15
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeTwo.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/exp/expDerivativeTwo.js +36 -17
- package/lib/exercises/math/derivation/derivative/exp/expOverExpDerivative.d.ts +10 -0
- package/lib/exercises/math/derivation/derivative/exp/expOverExpDerivative.d.ts.map +1 -0
- package/lib/exercises/math/derivation/derivative/exp/expOverExpDerivative.js +294 -0
- package/lib/exercises/math/derivation/derivative/exp/index.d.ts +1 -0
- package/lib/exercises/math/derivation/derivative/exp/index.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/exp/index.js +1 -0
- package/lib/exercises/math/derivation/derivative/inverseFunctionDerivative.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/inverseFunctionDerivative.js +30 -2
- package/lib/exercises/math/derivation/derivative/productDerivative.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/productDerivative.js +68 -1
- package/lib/exercises/math/derivation/derivative/quotientDerivative.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/quotientDerivative.js +40 -4
- package/lib/exercises/math/derivation/derivative/sqrt/sqrtCompositionDerivation.d.ts.map +1 -1
- package/lib/exercises/math/derivation/derivative/sqrt/sqrtCompositionDerivation.js +30 -3
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeAlgebraicExpression.d.ts +12 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeAlgebraicExpression.d.ts.map +1 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeAlgebraicExpression.js +127 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeFromAlgebraic.d.ts +13 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeFromAlgebraic.d.ts.map +1 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeFromAlgebraic.js +161 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeFromImages.d.ts +11 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeFromImages.d.ts.map +1 -0
- package/lib/exercises/math/derivation/derivativeNumber/averageRateOfChangeFromImages.js +116 -0
- package/lib/exercises/math/derivation/derivativeNumber/derivativeNumberCalcul.d.ts +8 -0
- package/lib/exercises/math/derivation/derivativeNumber/derivativeNumberCalcul.d.ts.map +1 -0
- package/lib/exercises/math/derivation/derivativeNumber/derivativeNumberCalcul.js +142 -0
- package/lib/exercises/math/derivation/derivativeNumber/index.d.ts +4 -0
- package/lib/exercises/math/derivation/derivativeNumber/index.d.ts.map +1 -0
- package/lib/exercises/math/derivation/derivativeNumber/index.js +4 -0
- package/lib/exercises/math/derivation/index.d.ts +1 -1
- package/lib/exercises/math/derivation/index.js +1 -1
- package/lib/exercises/math/derivation/variations/index.d.ts +1 -0
- package/lib/exercises/math/derivation/variations/index.d.ts.map +1 -1
- package/lib/exercises/math/derivation/variations/index.js +1 -0
- package/lib/exercises/math/derivation/variations/readExtremaAbscissFromDerivativeCurve.d.ts +7 -0
- package/lib/exercises/math/derivation/variations/readExtremaAbscissFromDerivativeCurve.d.ts.map +1 -0
- package/lib/exercises/math/derivation/variations/readExtremaAbscissFromDerivativeCurve.js +174 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpAPlusB.d.ts +13 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpAPlusB.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpAPlusB.js +305 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpKa.d.ts +11 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpKa.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpKa.js +216 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpN.d.ts +9 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpN.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/algebraic/approxExpN.js +142 -0
- package/lib/exercises/math/functions/exponential/algebraic/index.d.ts +5 -0
- package/lib/exercises/math/functions/exponential/algebraic/index.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/algebraic/index.js +4 -0
- package/lib/exercises/math/functions/exponential/algebraic/rewriteExpUsingExpA.d.ts +14 -0
- package/lib/exercises/math/functions/exponential/algebraic/rewriteExpUsingExpA.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/algebraic/rewriteExpUsingExpA.js +337 -0
- package/lib/exercises/math/functions/exponential/definition/approxExpAPlusH.d.ts +11 -0
- package/lib/exercises/math/functions/exponential/definition/approxExpAPlusH.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/definition/approxExpAPlusH.js +223 -0
- package/lib/exercises/math/functions/exponential/definition/expAntecedentFromGraph.d.ts +9 -0
- package/lib/exercises/math/functions/exponential/definition/expAntecedentFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/definition/expAntecedentFromGraph.js +262 -0
- package/lib/exercises/math/functions/exponential/definition/expImageFromGraph.d.ts +9 -0
- package/lib/exercises/math/functions/exponential/definition/expImageFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/definition/expImageFromGraph.js +245 -0
- package/lib/exercises/math/functions/exponential/definition/index.d.ts +5 -0
- package/lib/exercises/math/functions/exponential/definition/index.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/definition/index.js +4 -0
- package/lib/exercises/math/functions/exponential/definition/isPlausibleExpFromGraph.d.ts +13 -0
- package/lib/exercises/math/functions/exponential/definition/isPlausibleExpFromGraph.d.ts.map +1 -0
- package/lib/exercises/math/functions/exponential/definition/isPlausibleExpFromGraph.js +366 -0
- package/lib/exercises/math/functions/exponential/expFactorization.d.ts.map +1 -1
- package/lib/exercises/math/functions/exponential/expFactorization.js +54 -42
- package/lib/exercises/math/functions/exponential/index.d.ts +2 -0
- package/lib/exercises/math/functions/exponential/index.d.ts.map +1 -1
- package/lib/exercises/math/functions/exponential/index.js +2 -0
- package/lib/exercises/math/functions/trinoms/devForm/coefficientsIdentification.d.ts.map +1 -1
- package/lib/exercises/math/functions/trinoms/devForm/coefficientsIdentification.js +30 -3
- package/lib/exercises/math/functions/trinoms/equation/deltaTrinom.d.ts.map +1 -1
- package/lib/exercises/math/functions/trinoms/equation/deltaTrinom.js +35 -1
- package/lib/exercises/math/functions/trinoms/equation/secondDegreeInequation.js +3 -0
- package/lib/exercises/math/functions/trinoms/parabole/paraboleExpressionReading.d.ts.map +1 -1
- package/lib/exercises/math/functions/trinoms/parabole/paraboleExpressionReading.js +1 -1
- package/lib/exercises/math/functions/trinoms/summitAndCanonical/alphaBetaInCanonicalForm.d.ts.map +1 -1
- package/lib/exercises/math/functions/trinoms/summitAndCanonical/alphaBetaInCanonicalForm.js +23 -1
- package/lib/exercises/math/functions/trinoms/summitAndCanonical/extremumFromCanonicalForm.d.ts.map +1 -1
- package/lib/exercises/math/functions/trinoms/summitAndCanonical/extremumFromCanonicalForm.js +29 -0
- package/lib/exercises/math/functions/variations/exp/index.d.ts +3 -0
- package/lib/exercises/math/functions/variations/exp/index.d.ts.map +1 -0
- package/lib/exercises/math/functions/variations/exp/index.js +2 -0
- package/lib/exercises/math/functions/variations/exp/varOfAEXPlusB.d.ts +9 -0
- package/lib/exercises/math/functions/variations/exp/varOfAEXPlusB.d.ts.map +1 -0
- package/lib/exercises/math/functions/variations/exp/varOfAEXPlusB.js +96 -0
- package/lib/exercises/math/functions/variations/exp/varOfAEXPlusBOverCEXPlusD.d.ts +11 -0
- package/lib/exercises/math/functions/variations/exp/varOfAEXPlusBOverCEXPlusD.d.ts.map +1 -0
- package/lib/exercises/math/functions/variations/exp/varOfAEXPlusBOverCEXPlusD.js +190 -0
- package/lib/exercises/math/functions/variations/index.d.ts +1 -0
- package/lib/exercises/math/functions/variations/index.d.ts.map +1 -1
- package/lib/exercises/math/functions/variations/index.js +1 -0
- package/lib/exercises/math/geometry/cartesian/cartesianEquationOfLineFromPerpendicularLine.d.ts +12 -0
- package/lib/exercises/math/geometry/cartesian/cartesianEquationOfLineFromPerpendicularLine.d.ts.map +1 -0
- package/lib/exercises/math/geometry/cartesian/cartesianEquationOfLineFromPerpendicularLine.js +230 -0
- package/lib/exercises/math/geometry/cartesian/cartesianEquationOfLineFromPointAndNormalVector.d.ts +10 -0
- package/lib/exercises/math/geometry/cartesian/cartesianEquationOfLineFromPointAndNormalVector.d.ts.map +1 -0
- package/lib/exercises/math/geometry/cartesian/cartesianEquationOfLineFromPointAndNormalVector.js +167 -0
- package/lib/exercises/math/geometry/cartesian/index.d.ts +3 -0
- package/lib/exercises/math/geometry/cartesian/index.d.ts.map +1 -1
- package/lib/exercises/math/geometry/cartesian/index.js +3 -0
- package/lib/exercises/math/geometry/cartesian/normalVectorFromCartesianLineEquation.d.ts +10 -0
- package/lib/exercises/math/geometry/cartesian/normalVectorFromCartesianLineEquation.d.ts.map +1 -0
- package/lib/exercises/math/geometry/cartesian/normalVectorFromCartesianLineEquation.js +131 -0
- package/lib/exercises/math/geometry/circles/index.d.ts +2 -0
- package/lib/exercises/math/geometry/circles/index.d.ts.map +1 -0
- package/lib/exercises/math/geometry/circles/index.js +1 -0
- package/lib/exercises/math/geometry/circles/isPointOnCircleFromCartesianEquation.d.ts +11 -0
- package/lib/exercises/math/geometry/circles/isPointOnCircleFromCartesianEquation.d.ts.map +1 -0
- package/lib/exercises/math/geometry/circles/isPointOnCircleFromCartesianEquation.js +131 -0
- package/lib/exercises/math/geometry/euclidian/pinPointFromAxialOrCentralSymmetry.js +2 -2
- package/lib/exercises/math/geometry/euclidian/pinSegmentFromRotation.d.ts.map +1 -1
- package/lib/exercises/math/geometry/euclidian/pinSegmentFromRotation.js +0 -2
- package/lib/exercises/math/geometry/index.d.ts +1 -0
- package/lib/exercises/math/geometry/index.d.ts.map +1 -1
- package/lib/exercises/math/geometry/index.js +1 -0
- package/lib/exercises/math/geometry/thales/thales.js +1 -1
- package/lib/exercises/math/geometry/thales/thalesCalcul.js +1 -1
- package/lib/exercises/math/geometry/vectors/colinearity/determinant.js +1 -1
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/index.d.ts +4 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/index.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/index.js +3 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiAngle.d.ts +9 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiAngle.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiAngle.js +247 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiBH.d.ts +13 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiBH.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiBH.js +452 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiSideLength.d.ts +9 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiSideLength.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alKashi/scalarProductAlKashiSideLength.js +253 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/index.d.ts +4 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/index.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/index.js +3 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductIdentities.d.ts +10 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductIdentities.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductIdentities.js +174 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductInOrthonormalBasisIJ.d.ts +9 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductInOrthonormalBasisIJ.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductInOrthonormalBasisIJ.js +231 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductLamdbaULambdaV.d.ts +14 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductLamdbaULambdaV.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductLamdbaULambdaV.js +292 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/angleFromScalarProduct.js +1 -1
- package/lib/exercises/math/geometry/vectors/scalarProduct/findCoordinatesToOrthogonalize.d.ts.map +1 -1
- package/lib/exercises/math/geometry/vectors/scalarProduct/findCoordinatesToOrthogonalize.js +33 -7
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/index.d.ts +6 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/index.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/index.js +5 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsBasisIJ.d.ts +9 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsBasisIJ.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsBasisIJ.js +202 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsUsingCoords.d.ts +9 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsUsingCoords.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsUsingCoords.js +127 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsPointOnCircle.d.ts +12 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsPointOnCircle.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsPointOnCircle.js +167 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsPointOnPerpendicularBisector.d.ts +12 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsPointOnPerpendicularBisector.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsPointOnPerpendicularBisector.js +180 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsRightTriangleUsingPointCoords.d.ts +12 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsRightTriangleUsingPointCoords.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsRightTriangleUsingPointCoords.js +235 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductComputeBH.d.ts +12 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductComputeBH.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductComputeBH.js +423 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductOfVectsOnGrid1.d.ts +17 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductOfVectsOnGrid1.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductOfVectsOnGrid1.js +347 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductParallelogramDiagonalPlus.d.ts +8 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductParallelogramDiagonalPlus.d.ts.map +1 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductParallelogramDiagonalPlus.js +301 -0
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductViaCoords.js +1 -1
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductViaCos.d.ts.map +1 -1
- package/lib/exercises/math/geometry/vectors/scalarProduct/scalarProductViaCos.js +38 -1
- package/lib/exercises/math/probaStat/conditionalProbability.d.ts +4 -1
- package/lib/exercises/math/probaStat/conditionalProbability.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/conditionalProbability.js +38 -5
- package/lib/exercises/math/probaStat/independancy/independancy.d.ts +9 -0
- package/lib/exercises/math/probaStat/independancy/independancy.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/independancy/independancy.js +114 -0
- package/lib/exercises/math/probaStat/independancy/independancyFindCap.d.ts +9 -0
- package/lib/exercises/math/probaStat/independancy/independancyFindCap.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/independancy/independancyFindCap.js +101 -0
- package/lib/exercises/math/probaStat/independancy/independancyFindCup.d.ts +9 -0
- package/lib/exercises/math/probaStat/independancy/independancyFindCup.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/independancy/independancyFindCup.js +118 -0
- package/lib/exercises/math/probaStat/independancy/index.d.ts +5 -0
- package/lib/exercises/math/probaStat/independancy/index.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/independancy/index.js +4 -0
- package/lib/exercises/math/probaStat/independancy/isIndependantFromDefinition.d.ts +10 -0
- package/lib/exercises/math/probaStat/independancy/isIndependantFromDefinition.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/independancy/isIndependantFromDefinition.js +106 -0
- package/lib/exercises/math/probaStat/index.d.ts +1 -1
- package/lib/exercises/math/probaStat/index.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/index.js +1 -1
- package/lib/exercises/math/probaStat/randomVariable/findValueForFairRandomVariable.d.ts +9 -0
- package/lib/exercises/math/probaStat/randomVariable/findValueForFairRandomVariable.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/randomVariable/findValueForFairRandomVariable.js +141 -0
- package/lib/exercises/math/probaStat/randomVariable/findValueToMatchRandomVariableAverage.d.ts +10 -0
- package/lib/exercises/math/probaStat/randomVariable/findValueToMatchRandomVariableAverage.d.ts.map +1 -0
- package/lib/exercises/math/probaStat/randomVariable/findValueToMatchRandomVariableAverage.js +174 -0
- package/lib/exercises/math/probaStat/randomVariable/index.d.ts +1 -0
- package/lib/exercises/math/probaStat/randomVariable/index.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/randomVariable/index.js +2 -0
- package/lib/exercises/math/probaStat/randomVariable/randomVariableStandardDeviation.js +1 -1
- package/lib/exercises/math/probaStat/twoStepExperiments/headsOrTailsTwiceOutcomes.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/twoStepExperiments/headsOrTailsTwiceOutcomes.js +7 -0
- package/lib/exercises/math/probaStat/twoStepExperiments/headsOrTailsTwiceProbas.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/twoStepExperiments/headsOrTailsTwiceProbas.js +7 -0
- package/lib/exercises/math/probaStat/twoStepExperiments/numberPoolTwiceProbas.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/twoStepExperiments/numberPoolTwiceProbas.js +7 -0
- package/lib/exercises/math/probaStat/twoStepExperiments/twoStepExperimentProbas.d.ts.map +1 -1
- package/lib/exercises/math/probaStat/twoStepExperiments/twoStepExperimentProbas.js +7 -0
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindExplicitFormulaFirstTermRandom.d.ts +9 -0
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindExplicitFormulaFirstTermRandom.d.ts.map +1 -0
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindExplicitFormulaFirstTermRandom.js +118 -0
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindRandomTermFromTwoTerms.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindRandomTermFromTwoTerms.js +55 -6
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindReasonRandomRange.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticFindReasonRandomRange.js +42 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticFirstTermsSum.d.ts +4 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticFirstTermsSum.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticFirstTermsSum.js +57 -7
- package/lib/exercises/math/sequences/arithmetic/arithmeticRecurrenceFormulaUsage.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticRecurrenceFormulaUsage.js +24 -2
- package/lib/exercises/math/sequences/arithmetic/arithmeticThresholdFind.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/arithmeticThresholdFind.js +31 -8
- package/lib/exercises/math/sequences/arithmetic/index.d.ts +1 -1
- package/lib/exercises/math/sequences/arithmetic/index.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/index.js +1 -1
- package/lib/exercises/math/sequences/arithmetic/recognizeArithmeticFromGraph.d.ts.map +1 -1
- package/lib/exercises/math/sequences/arithmetic/recognizeArithmeticFromGraph.js +11 -1
- package/lib/exercises/math/sequences/generation/index.d.ts +2 -0
- package/lib/exercises/math/sequences/generation/index.d.ts.map +1 -0
- package/lib/exercises/math/sequences/generation/index.js +1 -0
- package/lib/exercises/math/sequences/generation/recognizeRecurrenceOrExplicit.d.ts +8 -0
- package/lib/exercises/math/sequences/generation/recognizeRecurrenceOrExplicit.d.ts.map +1 -0
- package/lib/exercises/math/sequences/generation/recognizeRecurrenceOrExplicit.js +63 -0
- package/lib/exercises/math/sequences/geometric/geometricFindExplicitFormulaFirstRankOne.js +5 -5
- package/lib/exercises/math/sequences/geometric/geometricFindExplicitFormulaFirstTermRandom.d.ts.map +1 -1
- package/lib/exercises/math/sequences/geometric/geometricFindExplicitFormulaFirstTermRandom.js +3 -1
- package/lib/exercises/math/sequences/geometric/geometricFindReason.d.ts.map +1 -1
- package/lib/exercises/math/sequences/geometric/geometricFindReason.js +41 -2
- package/lib/exercises/math/sequences/geometric/geometricRecurrenceFormulaUsage.d.ts.map +1 -1
- package/lib/exercises/math/sequences/geometric/geometricRecurrenceFormulaUsage.js +28 -2
- package/lib/exercises/math/sequences/graph/index.d.ts +2 -0
- package/lib/exercises/math/sequences/graph/index.d.ts.map +1 -0
- package/lib/exercises/math/sequences/graph/index.js +1 -0
- package/lib/exercises/math/sequences/graph/placeFirstSequencePoints.d.ts +11 -0
- package/lib/exercises/math/sequences/graph/placeFirstSequencePoints.d.ts.map +1 -0
- package/lib/exercises/math/sequences/graph/placeFirstSequencePoints.js +113 -0
- package/lib/exercises/math/sequences/index.d.ts +2 -0
- package/lib/exercises/math/sequences/index.d.ts.map +1 -1
- package/lib/exercises/math/sequences/index.js +2 -0
- package/lib/exercises/math/sequences/notation/identifyRankInSequenceTermsList.d.ts +12 -0
- package/lib/exercises/math/sequences/notation/identifyRankInSequenceTermsList.d.ts.map +1 -0
- package/lib/exercises/math/sequences/notation/identifyRankInSequenceTermsList.js +114 -0
- package/lib/exercises/math/sequences/notation/identifySequenceTermInList.d.ts +12 -0
- package/lib/exercises/math/sequences/notation/identifySequenceTermInList.d.ts.map +1 -0
- package/lib/exercises/math/sequences/notation/identifySequenceTermInList.js +111 -0
- package/lib/exercises/math/sequences/notation/index.d.ts +3 -0
- package/lib/exercises/math/sequences/notation/index.d.ts.map +1 -0
- package/lib/exercises/math/sequences/notation/index.js +2 -0
- package/lib/exercises/math/sequences/sequenceEvaluation.d.ts.map +1 -1
- package/lib/exercises/math/sequences/sequenceEvaluation.js +22 -2
- package/lib/exercises/math/spaceGeometry/basis/findSpacePointOnRectangularPrism.d.ts.map +1 -1
- package/lib/exercises/math/spaceGeometry/basis/findSpacePointOnRectangularPrism.js +0 -1
- package/lib/exercises/math/spaceGeometry/sphere/sphereLatLonReading.2d.d.ts.map +1 -1
- package/lib/exercises/math/spaceGeometry/sphere/sphereLatLonReading.2d.js +0 -2
- package/lib/exercises/math/trigonometry/circle/areReelsOnTheSameTrigoCirclePoint.d.ts +9 -0
- package/lib/exercises/math/trigonometry/circle/areReelsOnTheSameTrigoCirclePoint.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/areReelsOnTheSameTrigoCirclePoint.js +107 -0
- package/lib/exercises/math/trigonometry/circle/associatePoint.d.ts +10 -0
- package/lib/exercises/math/trigonometry/circle/associatePoint.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/associatePoint.js +86 -0
- package/lib/exercises/math/trigonometry/circle/associateReelToTrigoCirclePoint.d.ts +10 -0
- package/lib/exercises/math/trigonometry/circle/associateReelToTrigoCirclePoint.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/associateReelToTrigoCirclePoint.js +205 -0
- package/lib/exercises/math/trigonometry/circle/findAngleFromCosAndSin.d.ts +7 -0
- package/lib/exercises/math/trigonometry/circle/findAngleFromCosAndSin.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/findAngleFromCosAndSin.js +121 -0
- package/lib/exercises/math/trigonometry/circle/index.d.ts +7 -0
- package/lib/exercises/math/trigonometry/circle/index.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/index.js +7 -0
- package/lib/exercises/math/trigonometry/circle/mainAngleMeasure.d.ts +10 -0
- package/lib/exercises/math/trigonometry/circle/mainAngleMeasure.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/mainAngleMeasure.js +100 -0
- package/lib/exercises/math/trigonometry/circle/mainRemarkableValues.d.ts +8 -0
- package/lib/exercises/math/trigonometry/circle/mainRemarkableValues.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/mainRemarkableValues.js +97 -0
- package/lib/exercises/math/trigonometry/circle/remarkableValues.d.ts +10 -0
- package/lib/exercises/math/trigonometry/circle/remarkableValues.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/circle/remarkableValues.js +112 -0
- package/lib/exercises/math/trigonometry/functions/basicEquationCos.d.ts +7 -0
- package/lib/exercises/math/trigonometry/functions/basicEquationCos.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/basicEquationCos.js +92 -0
- package/lib/exercises/math/trigonometry/functions/basicEquationSin.d.ts +7 -0
- package/lib/exercises/math/trigonometry/functions/basicEquationSin.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/basicEquationSin.js +104 -0
- package/lib/exercises/math/trigonometry/functions/basicTrigoSystemEquation.d.ts +7 -0
- package/lib/exercises/math/trigonometry/functions/basicTrigoSystemEquation.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/basicTrigoSystemEquation.js +83 -0
- package/lib/exercises/math/trigonometry/functions/equationCosOnRandomInterval.d.ts +8 -0
- package/lib/exercises/math/trigonometry/functions/equationCosOnRandomInterval.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/equationCosOnRandomInterval.js +111 -0
- package/lib/exercises/math/trigonometry/functions/equationSinOnRandomInterval.d.ts +8 -0
- package/lib/exercises/math/trigonometry/functions/equationSinOnRandomInterval.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/equationSinOnRandomInterval.js +101 -0
- package/lib/exercises/math/trigonometry/functions/index.d.ts +6 -0
- package/lib/exercises/math/trigonometry/functions/index.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/index.js +6 -0
- package/lib/exercises/math/trigonometry/functions/trigoAssociateAngle.d.ts +9 -0
- package/lib/exercises/math/trigonometry/functions/trigoAssociateAngle.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/functions/trigoAssociateAngle.js +151 -0
- package/lib/exercises/math/trigonometry/index.d.ts +3 -14
- package/lib/exercises/math/trigonometry/index.d.ts.map +1 -1
- package/lib/exercises/math/trigonometry/index.js +3 -14
- package/lib/exercises/math/trigonometry/triangle/index.d.ts +7 -0
- package/lib/exercises/math/trigonometry/triangle/index.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/index.js +6 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometry.d.ts +10 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometry.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometry.js +207 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometryAngleCalcul.d.ts +10 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometryAngleCalcul.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometryAngleCalcul.js +174 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySideCalcul.d.ts +11 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySideCalcul.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySideCalcul.js +224 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySideName.d.ts +13 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySideName.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySideName.js +189 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySohcahtoaCalcul.d.ts +13 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySohcahtoaCalcul.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySohcahtoaCalcul.js +290 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySohcahtoaUse.d.ts +18 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySohcahtoaUse.d.ts.map +1 -0
- package/lib/exercises/math/trigonometry/triangle/trigonometrySohcahtoaUse.js +386 -0
- package/lib/exercises/pc/mathExosInPC.d.ts +2 -2
- package/lib/exercises/pc/mathExosInPC.d.ts.map +1 -1
- package/lib/exercises/pc/mathExosInPC.js +2 -2
- package/lib/exercises/vea/cartesianLineVEA.d.ts +2 -0
- package/lib/exercises/vea/cartesianLineVEA.d.ts.map +1 -0
- package/lib/exercises/vea/cartesianLineVEA.js +1 -0
- package/lib/index.d.ts +186 -27
- package/lib/index.d.ts.map +1 -1
- package/lib/math/geometry/line.d.ts +2 -0
- package/lib/math/geometry/line.d.ts.map +1 -1
- package/lib/math/geometry/line.js +7 -0
- package/lib/math/geometry/point.d.ts +1 -0
- package/lib/math/geometry/point.d.ts.map +1 -1
- package/lib/math/geometry/point.js +5 -0
- package/lib/math/geometry/polygons/relationPP.d.ts +8 -0
- package/lib/math/geometry/polygons/relationPP.d.ts.map +1 -0
- package/lib/math/geometry/polygons/relationPP.js +41 -0
- package/lib/math/geometry/segment.d.ts +1 -1
- package/lib/math/geometry/vector.d.ts +2 -1
- package/lib/math/geometry/vector.d.ts.map +1 -1
- package/lib/math/geometry/vector.js +1 -1
- package/lib/math/numbers/reals/real.d.ts.map +1 -1
- package/lib/math/numbers/reals/real.js +2 -0
- package/lib/math/polynomials/trinom.d.ts +1 -1
- package/lib/math/polynomials/trinom.d.ts.map +1 -1
- package/lib/math/polynomials/trinom.js +15 -6
- package/lib/math/utils/arithmetic/primeFactors.js +1 -1
- package/lib/math/utils/geometry/randomVecs2.d.ts +6 -0
- package/lib/math/utils/geometry/randomVecs2.d.ts.map +1 -0
- package/lib/math/utils/geometry/randomVecs2.js +34 -0
- package/lib/playground.d.ts.map +1 -1
- package/lib/playground.js +3 -1
- package/lib/tests/questionTest.d.ts.map +1 -1
- package/lib/tests/questionTest.js +2 -2
- package/lib/tree/nodes/algebraicNode.d.ts +1 -0
- package/lib/tree/nodes/algebraicNode.d.ts.map +1 -1
- package/lib/tree/nodes/equations/equationSolutionNode.d.ts +1 -0
- package/lib/tree/nodes/equations/equationSolutionNode.d.ts.map +1 -1
- package/lib/tree/nodes/equations/equationSolutionNode.js +3 -0
- package/lib/tree/nodes/functions/expNode.d.ts +1 -1
- package/lib/tree/nodes/functions/expNode.d.ts.map +1 -1
- package/lib/tree/nodes/functions/sqrtNode.d.ts +2 -1
- package/lib/tree/nodes/functions/sqrtNode.d.ts.map +1 -1
- package/lib/tree/nodes/functions/sqrtNode.js +17 -6
- package/lib/tree/nodes/inequations/inequationSolutionNode.d.ts +1 -0
- package/lib/tree/nodes/inequations/inequationSolutionNode.d.ts.map +1 -1
- package/lib/tree/nodes/inequations/inequationSolutionNode.js +3 -0
- package/lib/tree/nodes/operators/fractionNode.d.ts +1 -1
- package/lib/tree/nodes/operators/fractionNode.d.ts.map +1 -1
- package/lib/tree/nodes/operators/fractionNode.js +6 -4
- package/lib/tree/nodes/operators/multiplyNode.js +1 -1
- package/lib/tree/nodes/sets/intervalNode.d.ts +6 -0
- package/lib/tree/nodes/sets/intervalNode.d.ts.map +1 -1
- package/lib/tree/nodes/sets/namedIntervalNode.d.ts +31 -0
- package/lib/tree/nodes/sets/namedIntervalNode.d.ts.map +1 -0
- package/lib/tree/nodes/sets/namedIntervalNode.js +77 -0
- package/package.json +1 -1
package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductInOrthonormalBasisIJ.js
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import { addValidProp, shuffleProps, tryToAddWrongProp, propWhile, } from "../../../../../../exercises/exercise.js";
|
|
2
|
+
import { getDistinctQuestions } from "../../../../../../exercises/utils/getDistinctQuestions.js";
|
|
3
|
+
import { randint } from "../../../../../../math/utils/random/randint.js";
|
|
4
|
+
import { NodeConstructor, } from "../../../../../../tree/nodes/nodeConstructor.js";
|
|
5
|
+
import { add } from "../../../../../../tree/nodes/operators/addNode.js";
|
|
6
|
+
import { multiply } from "../../../../../../tree/nodes/operators/multiplyNode.js";
|
|
7
|
+
import { parseAlgebraic } from "../../../../../../tree/parsers/latexParser.js";
|
|
8
|
+
import { zip } from "../../../../../../utils/arrays/arrayZip.js";
|
|
9
|
+
import { handleVEAError } from "../../../../../../utils/errors/handleVEAError.js";
|
|
10
|
+
import { alignTex } from "../../../../../../utils/latex/alignTex.js";
|
|
11
|
+
const getHydratedNodes = (identifiers) => {
|
|
12
|
+
const { nodeIdsU, nodeIdsV } = identifiers;
|
|
13
|
+
return {
|
|
14
|
+
nodesU: nodeIdsU.map((nodeIds) => NodeConstructor.fromIdentifiers(nodeIds)),
|
|
15
|
+
nodesV: nodeIdsV.map((nodeIds) => NodeConstructor.fromIdentifiers(nodeIds)),
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
const getInstruction = (identifiers) => {
|
|
19
|
+
const { nodesU, nodesV } = getHydratedNodes(identifiers);
|
|
20
|
+
const [i, j, u, v] = ["i", "j", "u", "v"].map((letter) => `\\overrightarrow{${letter}}`);
|
|
21
|
+
const [texUI, texVI] = [nodesU[0], nodesV[0]].map((node) => {
|
|
22
|
+
const v = node.evaluate();
|
|
23
|
+
if (v === -1) {
|
|
24
|
+
return "-";
|
|
25
|
+
}
|
|
26
|
+
else if (v === 1) {
|
|
27
|
+
return "";
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
return node.toTex();
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
const [texUJ, texVJ] = [nodesU[1], nodesV[1]].map((node) => {
|
|
34
|
+
const v = node.evaluate();
|
|
35
|
+
if (v >= 0) {
|
|
36
|
+
return v === 1 ? "+" : `+ ${node.toTex()}`;
|
|
37
|
+
}
|
|
38
|
+
else {
|
|
39
|
+
return v === -1 ? "-" : node.toTex();
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
return `Soient $${i}$ et $${j}$ deux vecteurs formant une base orthonormale du plan.
|
|
43
|
+
|
|
44
|
+
Soient $${u}$ et $${v}$ deux vecteurs tels que :
|
|
45
|
+
|
|
46
|
+
$$
|
|
47
|
+
${u} = ${texUI}${i} ${texUJ}${j}
|
|
48
|
+
$$
|
|
49
|
+
|
|
50
|
+
$$
|
|
51
|
+
${v} = ${texVI}${i} ${texVJ}${j}
|
|
52
|
+
$$
|
|
53
|
+
|
|
54
|
+
Calculer :
|
|
55
|
+
|
|
56
|
+
$$
|
|
57
|
+
${u} \\cdot ${v}
|
|
58
|
+
$$
|
|
59
|
+
|
|
60
|
+
`;
|
|
61
|
+
};
|
|
62
|
+
const getAnswerNode = (identifiers) => {
|
|
63
|
+
const { nodesU, nodesV } = getHydratedNodes(identifiers);
|
|
64
|
+
return zip(nodesU, nodesV)
|
|
65
|
+
.map(([nodeUX, nodeVX]) => multiply(nodeUX, nodeVX))
|
|
66
|
+
.reduce((acc, nodeX) => add(acc, nodeX));
|
|
67
|
+
};
|
|
68
|
+
const getAnswer = (identifiers) => {
|
|
69
|
+
return getAnswerNode(identifiers).simplify().toTex();
|
|
70
|
+
};
|
|
71
|
+
const getHint = () => {
|
|
72
|
+
const [i, j] = ["i", "j"].map((letter) => `\\overrightarrow{${letter}}`);
|
|
73
|
+
return `Les vecteurs $${i}$ et $${j}$ forment une base orthonormale.
|
|
74
|
+
|
|
75
|
+
Autrement dit :
|
|
76
|
+
|
|
77
|
+
$$
|
|
78
|
+
${i} \\cdot ${i} = ${j} \\cdot ${j} = 1
|
|
79
|
+
$$
|
|
80
|
+
|
|
81
|
+
et
|
|
82
|
+
|
|
83
|
+
$$
|
|
84
|
+
${i} \\cdot ${j} = 0
|
|
85
|
+
$$
|
|
86
|
+
|
|
87
|
+
`;
|
|
88
|
+
};
|
|
89
|
+
const getCorrection = (identifiers) => {
|
|
90
|
+
const { nodesU, nodesV } = getHydratedNodes(identifiers);
|
|
91
|
+
const [i, j, u, v] = ["i", "j", "u", "v"].map((letter) => `\\overrightarrow{${letter}}`);
|
|
92
|
+
const [texUI, texVI] = [nodesU[0], nodesV[0]].map((node) => {
|
|
93
|
+
const v = node.evaluate();
|
|
94
|
+
if (v === -1) {
|
|
95
|
+
return "-";
|
|
96
|
+
}
|
|
97
|
+
else if (v === 1) {
|
|
98
|
+
return "";
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
return node.toTex();
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
const [texUJ, texVJ] = [nodesU[1], nodesV[1]].map((node) => {
|
|
105
|
+
const v = node.evaluate();
|
|
106
|
+
if (v >= 0) {
|
|
107
|
+
return v === 1 ? "+" : `+ ${node.toTex()}`;
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
return v === -1 ? "-" : node.toTex();
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
return `On développe :
|
|
114
|
+
|
|
115
|
+
${alignTex([
|
|
116
|
+
["", `${u} \\cdot ${v}`],
|
|
117
|
+
["=", `(${texUI}${i} ${texUJ}${j}) \\cdot (${texVI}${i} ${texVJ}${j})`],
|
|
118
|
+
[
|
|
119
|
+
"=",
|
|
120
|
+
`(${multiply(nodesU[0], nodesV[0]).toTex()})(${i} \\cdot ${i}) + (${multiply(nodesU[1], nodesV[1]).toTex()})(${j} \\cdot ${j}) + 0`,
|
|
121
|
+
],
|
|
122
|
+
])}
|
|
123
|
+
|
|
124
|
+
On s'est épargné le calcul des autres produits car
|
|
125
|
+
|
|
126
|
+
$$
|
|
127
|
+
${i} \\cdot ${j} = ${j} \\cdot ${i} = 0
|
|
128
|
+
$$
|
|
129
|
+
|
|
130
|
+
On peut donc calculer le produit scalaire en utilisant les coordonnées dans la base $(${i},${j})$ de la même manière que lorsque l'on travaille dans la base canonique du plan.
|
|
131
|
+
|
|
132
|
+
${alignTex([
|
|
133
|
+
["", `${u} \\cdot ${v}`],
|
|
134
|
+
[
|
|
135
|
+
"=",
|
|
136
|
+
`${getAnswerNode(identifiers).toTex({
|
|
137
|
+
forceTimesSign: true,
|
|
138
|
+
forceNoSimplification: true,
|
|
139
|
+
})}`,
|
|
140
|
+
],
|
|
141
|
+
["=", `${getAnswer(identifiers)}`],
|
|
142
|
+
])}
|
|
143
|
+
|
|
144
|
+
`;
|
|
145
|
+
};
|
|
146
|
+
const getPropositions = (n, { answer, ...identifiers }) => {
|
|
147
|
+
const propositions = [];
|
|
148
|
+
addValidProp(propositions, answer);
|
|
149
|
+
const { nodesU, nodesV } = getHydratedNodes(identifiers);
|
|
150
|
+
//student: (uI + vI) + (uJ + vJ)
|
|
151
|
+
{
|
|
152
|
+
const nodeWrong = zip(nodesU, nodesV)
|
|
153
|
+
.map(([nodeUX, nodeVX]) => add(nodeUX, nodeVX))
|
|
154
|
+
.reduce((acc, nodeX) => add(acc, nodeX));
|
|
155
|
+
tryToAddWrongProp(propositions, nodeWrong.simplify().toTex());
|
|
156
|
+
}
|
|
157
|
+
//student: (uI * vI) * (uJ * vJ)
|
|
158
|
+
{
|
|
159
|
+
const nodeWrong = zip(nodesU, nodesV)
|
|
160
|
+
.map(([nodeUX, nodeVX]) => multiply(nodeUX, nodeVX))
|
|
161
|
+
.reduce((acc, nodeX) => multiply(acc, nodeX));
|
|
162
|
+
tryToAddWrongProp(propositions, nodeWrong.simplify().toTex());
|
|
163
|
+
}
|
|
164
|
+
//student: nonsense magic: number("uIuJ") op number("vIvJ")
|
|
165
|
+
{
|
|
166
|
+
const nodeMagicU = parseInt(nodesU.reduce((acc, node) => acc + `${node.toTex()}`, "")).toTree();
|
|
167
|
+
const nodeMagicV = parseInt(nodesV.reduce((acc, node) => acc + `${node.toTex()}`, "")).toTree();
|
|
168
|
+
tryToAddWrongProp(propositions, add(nodeMagicU, nodeMagicV).simplify().toTex());
|
|
169
|
+
tryToAddWrongProp(propositions, multiply(nodeMagicU, nodeMagicV).simplify().toTex());
|
|
170
|
+
}
|
|
171
|
+
propWhile(propositions, n, () => {
|
|
172
|
+
tryToAddWrongProp(propositions, randint(-60, 60).frenchify());
|
|
173
|
+
});
|
|
174
|
+
return shuffleProps(propositions, n);
|
|
175
|
+
};
|
|
176
|
+
const getKeys = () => {
|
|
177
|
+
return [];
|
|
178
|
+
};
|
|
179
|
+
const isAnswerValid = (ans, { answer }) => {
|
|
180
|
+
try {
|
|
181
|
+
const parsed = parseAlgebraic(ans);
|
|
182
|
+
return parsed.simplify().toTex() === answer;
|
|
183
|
+
}
|
|
184
|
+
catch (err) {
|
|
185
|
+
return handleVEAError(err);
|
|
186
|
+
}
|
|
187
|
+
};
|
|
188
|
+
const getScalarProductInOrthonormalBasisIJQuestion = () => {
|
|
189
|
+
function createRandomCoordsNodes() {
|
|
190
|
+
return [...Array(2).keys()]
|
|
191
|
+
.map(() => randint(-10, 11, [0]))
|
|
192
|
+
.map((v) => v.toTree());
|
|
193
|
+
}
|
|
194
|
+
const nodesU = createRandomCoordsNodes();
|
|
195
|
+
const nodesV = createRandomCoordsNodes();
|
|
196
|
+
const identifiers = {
|
|
197
|
+
nodeIdsU: nodesU.map((node) => node.toIdentifiers()),
|
|
198
|
+
nodeIdsV: nodesV.map((node) => node.toIdentifiers()),
|
|
199
|
+
};
|
|
200
|
+
return getQuestionFromIdentifiers(identifiers);
|
|
201
|
+
};
|
|
202
|
+
const getQuestionFromIdentifiers = (identifiers, opts) => {
|
|
203
|
+
return {
|
|
204
|
+
answer: getAnswer(identifiers, opts),
|
|
205
|
+
instruction: getInstruction(identifiers, opts),
|
|
206
|
+
keys: getKeys(identifiers, opts),
|
|
207
|
+
answerFormat: "tex",
|
|
208
|
+
identifiers,
|
|
209
|
+
hint: getHint(identifiers, opts),
|
|
210
|
+
correction: getCorrection(identifiers, opts),
|
|
211
|
+
options: opts,
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
export const scalarProductInOrthonormalBasisIJ = {
|
|
215
|
+
id: "scalarProductInOrthonormalBasisIJ",
|
|
216
|
+
connector: "=",
|
|
217
|
+
label: "Calculer $\\overrightarrow{u} \\cdot \\overrightarrow{v}$ avec $\\overrightarrow{u}$ et $\\overrightarrow{v}$ décomposés dans une base orthonormée $(\\overrightarrow{i},\\overrightarrow{j})$",
|
|
218
|
+
isSingleStep: true,
|
|
219
|
+
generator: (nb) => getDistinctQuestions(() => getScalarProductInOrthonormalBasisIJQuestion(), nb),
|
|
220
|
+
qcmTimer: 60,
|
|
221
|
+
freeTimer: 60,
|
|
222
|
+
getPropositions,
|
|
223
|
+
isAnswerValid,
|
|
224
|
+
subject: "Mathématiques",
|
|
225
|
+
getInstruction,
|
|
226
|
+
getHint,
|
|
227
|
+
getCorrection,
|
|
228
|
+
getAnswer,
|
|
229
|
+
getQuestionFromIdentifiers,
|
|
230
|
+
hasHintAndCorrection: true,
|
|
231
|
+
};
|
package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductLamdbaULambdaV.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Exercise } from "../../../../../../exercises/exercise.js";
|
|
2
|
+
import { NodeIdentifiers } from "../../../../../../tree/nodes/nodeConstructor.js";
|
|
3
|
+
type Identifiers = {
|
|
4
|
+
nodeIdsUDotV: NodeIdentifiers;
|
|
5
|
+
nodeIdsA: NodeIdentifiers;
|
|
6
|
+
nodeIdsB: NodeIdentifiers;
|
|
7
|
+
};
|
|
8
|
+
type Options = {
|
|
9
|
+
isSignOnly: boolean;
|
|
10
|
+
};
|
|
11
|
+
export declare const scalarProductLamdbaULambdaV: Exercise<Identifiers, Options>;
|
|
12
|
+
export declare const scalarProductSignUSignV: Exercise<Identifiers, Options>;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=scalarProductLamdbaULambdaV.d.ts.map
|
package/lib/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductLamdbaULambdaV.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scalarProductLamdbaULambdaV.d.ts","sourceRoot":"","sources":["../../../../../../../src/exercises/math/geometry/vectors/scalarProduct/alg/scalarProductLamdbaULambdaV.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EAeT,MAAM,6BAA6B,CAAC;AAIrC,OAAO,EAEL,eAAe,EAChB,MAAM,qCAAqC,CAAC;AAgB7C,KAAK,WAAW,GAAG;IACjB,YAAY,EAAE,eAAe,CAAC;IAC9B,QAAQ,EAAE,eAAe,CAAC;IAC1B,QAAQ,EAAE,eAAe,CAAC;CAC3B,CAAC;AAmSF,KAAK,OAAO,GAAG;IACb,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AAMF,eAAO,MAAM,2BAA2B,EAAE,QAAQ,CAAC,WAAW,EAAE,OAAO,CAsBtE,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,QAAQ,CAAC,WAAW,EAAE,OAAO,CAsBlE,CAAC"}
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
import { addValidProp, shuffleProps, tryToAddWrongProp, propWhile, } from "../../../../../../exercises/exercise.js";
|
|
2
|
+
import { getDistinctQuestions } from "../../../../../../exercises/utils/getDistinctQuestions.js";
|
|
3
|
+
import { randint } from "../../../../../../math/utils/random/randint.js";
|
|
4
|
+
import { NodeConstructor, } from "../../../../../../tree/nodes/nodeConstructor.js";
|
|
5
|
+
import { isNumberNode } from "../../../../../../tree/nodes/numbers/numberNode.js";
|
|
6
|
+
import { add } from "../../../../../../tree/nodes/operators/addNode.js";
|
|
7
|
+
import { frac } from "../../../../../../tree/nodes/operators/fractionNode.js";
|
|
8
|
+
import { multiply } from "../../../../../../tree/nodes/operators/multiplyNode.js";
|
|
9
|
+
import { parseAlgebraic } from "../../../../../../tree/parsers/latexParser.js";
|
|
10
|
+
import { random } from "../../../../../../utils/alea/random.js";
|
|
11
|
+
import { shuffle } from "../../../../../../utils/alea/shuffle.js";
|
|
12
|
+
import { handleVEAError } from "../../../../../../utils/errors/handleVEAError.js";
|
|
13
|
+
import { alignTex } from "../../../../../../utils/latex/alignTex.js";
|
|
14
|
+
const parenthesesIfNeeded = (tex) => {
|
|
15
|
+
const isShouldParentheses = tex.startsWith("-") || tex.startsWith("+");
|
|
16
|
+
return isShouldParentheses ? `(${tex})` : tex;
|
|
17
|
+
};
|
|
18
|
+
const getHydratedNodes = (identifiers) => {
|
|
19
|
+
const { nodeIdsUDotV, nodeIdsA, nodeIdsB } = identifiers;
|
|
20
|
+
return {
|
|
21
|
+
nodeUDotV: NodeConstructor.fromIdentifiers(nodeIdsUDotV),
|
|
22
|
+
nodeA: NodeConstructor.fromIdentifiers(nodeIdsA),
|
|
23
|
+
nodeB: NodeConstructor.fromIdentifiers(nodeIdsB),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
const getInstruction = (identifiers) => {
|
|
27
|
+
const { nodeUDotV, nodeA, nodeB } = getHydratedNodes(identifiers);
|
|
28
|
+
const texA = nodeA.evaluate() === -1
|
|
29
|
+
? "-"
|
|
30
|
+
: nodeA.evaluate() === 1
|
|
31
|
+
? "+"
|
|
32
|
+
: nodeA.toTex();
|
|
33
|
+
const texB = nodeB.evaluate() === -1
|
|
34
|
+
? "-"
|
|
35
|
+
: nodeB.evaluate() === 1
|
|
36
|
+
? "+"
|
|
37
|
+
: nodeB.toTex();
|
|
38
|
+
const u = "\\overrightarrow u";
|
|
39
|
+
const v = "\\overrightarrow v";
|
|
40
|
+
return `Soit $${u}$ et $${v}$ deux vecteurs tels que :
|
|
41
|
+
|
|
42
|
+
$$
|
|
43
|
+
${u} \\cdot ${v} = ${nodeUDotV.toTex()}
|
|
44
|
+
$$
|
|
45
|
+
|
|
46
|
+
Calculer :
|
|
47
|
+
|
|
48
|
+
$$
|
|
49
|
+
${parenthesesIfNeeded(`${texA}${u}`)} \\cdot ${parenthesesIfNeeded(`${texB}${v}`)}
|
|
50
|
+
$$
|
|
51
|
+
|
|
52
|
+
`;
|
|
53
|
+
};
|
|
54
|
+
const getAnswerNode = (identifiers) => {
|
|
55
|
+
const { nodeUDotV, nodeA, nodeB } = getHydratedNodes(identifiers);
|
|
56
|
+
return multiply(multiply(nodeA, nodeB), nodeUDotV);
|
|
57
|
+
};
|
|
58
|
+
const getAnswer = (identifiers) => {
|
|
59
|
+
return getAnswerNode(identifiers).simplify().toTex();
|
|
60
|
+
};
|
|
61
|
+
const getHint = (identifiers) => {
|
|
62
|
+
const { nodeA, nodeB } = getHydratedNodes(identifiers);
|
|
63
|
+
const isSignOnly = Math.abs(nodeA.evaluate()) === 1 && Math.abs(nodeB.evaluate()) === 1;
|
|
64
|
+
if (isSignOnly) {
|
|
65
|
+
return `Voici un calcul pour te mettre sur la piste :
|
|
66
|
+
|
|
67
|
+
${alignTex([
|
|
68
|
+
[
|
|
69
|
+
"",
|
|
70
|
+
"\\overrightarrow{u} \\cdot \\overrightarrow{v} + ((-\\overrightarrow{u}) \\cdot \\overrightarrow{v})",
|
|
71
|
+
],
|
|
72
|
+
[
|
|
73
|
+
"=",
|
|
74
|
+
"(\\overrightarrow{u} + (-\\overrightarrow{u})) \\cdot \\overrightarrow{v}",
|
|
75
|
+
],
|
|
76
|
+
["=", "(\\overrightarrow{0} \\cdot \\overrightarrow{v})"],
|
|
77
|
+
["=", "0"],
|
|
78
|
+
])}
|
|
79
|
+
|
|
80
|
+
`;
|
|
81
|
+
}
|
|
82
|
+
else {
|
|
83
|
+
return `Voici un calcul pour te mettre sur la piste :
|
|
84
|
+
|
|
85
|
+
${alignTex([
|
|
86
|
+
[
|
|
87
|
+
"",
|
|
88
|
+
"(\\overrightarrow{u} + \\overrightarrow{u}) \\cdot \\overrightarrow{v}",
|
|
89
|
+
],
|
|
90
|
+
[
|
|
91
|
+
"=",
|
|
92
|
+
"\\overrightarrow{u} \\cdot \\overrightarrow{v} + \\overrightarrow{u} \\cdot \\overrightarrow{v}",
|
|
93
|
+
],
|
|
94
|
+
["=", "2 (\\overrightarrow{u} \\cdot \\overrightarrow{v})"],
|
|
95
|
+
])}
|
|
96
|
+
|
|
97
|
+
`;
|
|
98
|
+
}
|
|
99
|
+
};
|
|
100
|
+
const getCorrection = (identifiers) => {
|
|
101
|
+
const { nodeA, nodeB } = getHydratedNodes(identifiers);
|
|
102
|
+
const texA = nodeA.evaluate() === -1
|
|
103
|
+
? "-"
|
|
104
|
+
: nodeA.evaluate() === 1
|
|
105
|
+
? "+"
|
|
106
|
+
: nodeA.toTex();
|
|
107
|
+
const texB = nodeB.evaluate() === -1
|
|
108
|
+
? "-"
|
|
109
|
+
: nodeB.evaluate() === 1
|
|
110
|
+
? "+"
|
|
111
|
+
: nodeB.toTex();
|
|
112
|
+
const u = "\\overrightarrow u";
|
|
113
|
+
const v = "\\overrightarrow v";
|
|
114
|
+
return `Le produit scalaire vérifie, pour $k$ et $k'$ réels :
|
|
115
|
+
|
|
116
|
+
$$
|
|
117
|
+
(k \\overrightarrow{u}) \\cdot \\overrightarrow{v} = k (\\overrightarrow{u} \\cdot \\overrightarrow{v})
|
|
118
|
+
$$
|
|
119
|
+
|
|
120
|
+
$$
|
|
121
|
+
\\overrightarrow{u} \\cdot (k' \\overrightarrow{v}) = k' (\\overrightarrow{u} \\cdot \\overrightarrow{v})
|
|
122
|
+
$$
|
|
123
|
+
|
|
124
|
+
On a donc :
|
|
125
|
+
|
|
126
|
+
$$
|
|
127
|
+
${parenthesesIfNeeded(`${texA}${u}`)} \\cdot ${parenthesesIfNeeded(`${texB}${v}`)} = ${multiply(nodeA, nodeB).toTex({
|
|
128
|
+
forceNoSimplification: true,
|
|
129
|
+
forceTimesSign: true,
|
|
130
|
+
})} \\times (\\overrightarrow{u} \\cdot \\overrightarrow{v}) = ${getAnswer(identifiers)}
|
|
131
|
+
$$
|
|
132
|
+
|
|
133
|
+
`;
|
|
134
|
+
};
|
|
135
|
+
const getPropositions = (n, { answer, ...identifiers }) => {
|
|
136
|
+
const propositions = [];
|
|
137
|
+
addValidProp(propositions, answer);
|
|
138
|
+
const { nodeUDotV, nodeA, nodeB } = getHydratedNodes(identifiers);
|
|
139
|
+
const isSignOnly = Math.abs(nodeA.evaluate()) === 1 && Math.abs(nodeB.evaluate()) === 1;
|
|
140
|
+
//student: strange magic: a * firstDigit(uDotV) + b * secondDigit(uDotV)
|
|
141
|
+
if (isSignOnly) {
|
|
142
|
+
const uDotV = nodeUDotV.evaluate();
|
|
143
|
+
if (uDotV.frenchify().length === 2) {
|
|
144
|
+
const [firstDigit, secondDigit] = uDotV
|
|
145
|
+
.frenchify()
|
|
146
|
+
.split("")
|
|
147
|
+
.map((s) => +s);
|
|
148
|
+
const nodeWrong = add(multiply(nodeA, firstDigit), multiply(nodeB, secondDigit));
|
|
149
|
+
tryToAddWrongProp(propositions, nodeWrong.simplify().toTex());
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
//student: concatenation
|
|
153
|
+
if (!isSignOnly) {
|
|
154
|
+
if (isNumberNode(nodeA) && isNumberNode(nodeB)) {
|
|
155
|
+
const a = nodeA.evaluate();
|
|
156
|
+
const b = nodeB.evaluate();
|
|
157
|
+
if (a > 0 && b > 0) {
|
|
158
|
+
tryToAddWrongProp(propositions, `${a.frenchify()}${b.frenchify()}`);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
//student: concatenation times nodeUDotV
|
|
163
|
+
if (!isSignOnly) {
|
|
164
|
+
if (isNumberNode(nodeA) && isNumberNode(nodeB)) {
|
|
165
|
+
const a = nodeA.evaluate();
|
|
166
|
+
const b = nodeB.evaluate();
|
|
167
|
+
if (a > 0 && b > 0) {
|
|
168
|
+
const nodeConcat = parseAlgebraic(`${a.frenchify()}${b.frenchify()}`);
|
|
169
|
+
const nodeWrong = multiply(nodeConcat, nodeUDotV).simplify();
|
|
170
|
+
tryToAddWrongProp(propositions, nodeWrong.toTex());
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
//student: au dot bv = (a+b)(u dot v)
|
|
175
|
+
{
|
|
176
|
+
const nodeWrong = multiply(add(nodeA, nodeB).simplify(), nodeUDotV).simplify();
|
|
177
|
+
tryToAddWrongProp(propositions, nodeWrong.toTex());
|
|
178
|
+
}
|
|
179
|
+
propWhile(propositions, n + 2, () => {
|
|
180
|
+
tryToAddWrongProp(propositions, randint(-30, 30).frenchify());
|
|
181
|
+
});
|
|
182
|
+
return shuffleProps(propositions, n);
|
|
183
|
+
};
|
|
184
|
+
const getKeys = () => {
|
|
185
|
+
return [];
|
|
186
|
+
};
|
|
187
|
+
const isAnswerValid = (ans, { answer }) => {
|
|
188
|
+
try {
|
|
189
|
+
const parsed = parseAlgebraic(ans);
|
|
190
|
+
return parsed.simplify().toTex() === answer;
|
|
191
|
+
}
|
|
192
|
+
catch (err) {
|
|
193
|
+
return handleVEAError(err);
|
|
194
|
+
}
|
|
195
|
+
};
|
|
196
|
+
const getScalarProductLamdbaULambdaVQuestion = (optsIn) => {
|
|
197
|
+
const opts = optsIn ?? optsDefault;
|
|
198
|
+
const { isSignOnly } = opts;
|
|
199
|
+
function createRandomNodes() {
|
|
200
|
+
const rand = randint(0, 3);
|
|
201
|
+
switch (rand) {
|
|
202
|
+
case 0:
|
|
203
|
+
{
|
|
204
|
+
//les tables de multiplication (entiers naturels)
|
|
205
|
+
return [...Array(2).keys()].map(() => randint(2, 10).toTree());
|
|
206
|
+
}
|
|
207
|
+
break;
|
|
208
|
+
case 1:
|
|
209
|
+
{
|
|
210
|
+
//les tables de multiplication (entiers relatifs)
|
|
211
|
+
return [...Array(2).keys()].map(() => randint(2, 10).toTree());
|
|
212
|
+
}
|
|
213
|
+
break;
|
|
214
|
+
case 2:
|
|
215
|
+
{
|
|
216
|
+
//fraction simplifiable en un entier
|
|
217
|
+
const common = randint(2, 10);
|
|
218
|
+
return shuffle([common, common * randint(2, 10)]).map((v, i) => i === 0 ? frac(1, v) : v.toTree());
|
|
219
|
+
}
|
|
220
|
+
break;
|
|
221
|
+
default:
|
|
222
|
+
throw new Error("Unsupported rand: " + rand);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
const [nodeA, nodeB] = isSignOnly
|
|
226
|
+
? random([
|
|
227
|
+
[1, -1],
|
|
228
|
+
[-1, 1],
|
|
229
|
+
[-1, -1],
|
|
230
|
+
]).map((v) => v.toTree())
|
|
231
|
+
: createRandomNodes();
|
|
232
|
+
const nodeUDotV = isSignOnly
|
|
233
|
+
? randint(10, 100).toTree()
|
|
234
|
+
: random([1, 10, 100]).toTree();
|
|
235
|
+
const identifiers = {
|
|
236
|
+
nodeIdsA: nodeA.toIdentifiers(),
|
|
237
|
+
nodeIdsB: nodeB.toIdentifiers(),
|
|
238
|
+
nodeIdsUDotV: nodeUDotV.toIdentifiers(),
|
|
239
|
+
};
|
|
240
|
+
return getQuestionFromIdentifiers(identifiers);
|
|
241
|
+
};
|
|
242
|
+
const getQuestionFromIdentifiers = (identifiers, opts) => {
|
|
243
|
+
return {
|
|
244
|
+
answer: getAnswer(identifiers, opts),
|
|
245
|
+
instruction: getInstruction(identifiers, opts),
|
|
246
|
+
keys: getKeys(identifiers, opts),
|
|
247
|
+
answerFormat: "tex",
|
|
248
|
+
identifiers,
|
|
249
|
+
hint: getHint(identifiers, opts),
|
|
250
|
+
correction: getCorrection(identifiers, opts),
|
|
251
|
+
options: opts,
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
const optsDefault = {
|
|
255
|
+
isSignOnly: false,
|
|
256
|
+
};
|
|
257
|
+
export const scalarProductLamdbaULambdaV = {
|
|
258
|
+
id: "scalarProductLamdbaULambdaV",
|
|
259
|
+
connector: "=",
|
|
260
|
+
label: "Calculer $(a \\overrightarrow{u}) \\cdot (b \\overrightarrow{v})$ connaissant $\\overrightarrow{u} \\cdot \\overrightarrow{v}$",
|
|
261
|
+
isSingleStep: true,
|
|
262
|
+
generator: (nb) => getDistinctQuestions(() => getScalarProductLamdbaULambdaVQuestion({ isSignOnly: false }), nb),
|
|
263
|
+
qcmTimer: 60,
|
|
264
|
+
freeTimer: 60,
|
|
265
|
+
getPropositions,
|
|
266
|
+
isAnswerValid,
|
|
267
|
+
subject: "Mathématiques",
|
|
268
|
+
getInstruction,
|
|
269
|
+
getHint,
|
|
270
|
+
getCorrection,
|
|
271
|
+
getAnswer,
|
|
272
|
+
getQuestionFromIdentifiers,
|
|
273
|
+
hasHintAndCorrection: true,
|
|
274
|
+
};
|
|
275
|
+
export const scalarProductSignUSignV = {
|
|
276
|
+
id: "scalarProductSignUSignV",
|
|
277
|
+
connector: "=",
|
|
278
|
+
label: "Calculer $(\\pm \\overrightarrow{u}) \\cdot (\\pm \\overrightarrow{v})$ connaissant $\\overrightarrow{u} \\cdot \\overrightarrow{v}$",
|
|
279
|
+
isSingleStep: true,
|
|
280
|
+
generator: (nb) => getDistinctQuestions(() => getScalarProductLamdbaULambdaVQuestion({ isSignOnly: true }), nb),
|
|
281
|
+
qcmTimer: 60,
|
|
282
|
+
freeTimer: 60,
|
|
283
|
+
getPropositions,
|
|
284
|
+
isAnswerValid,
|
|
285
|
+
subject: "Mathématiques",
|
|
286
|
+
getInstruction,
|
|
287
|
+
getHint,
|
|
288
|
+
getCorrection,
|
|
289
|
+
getAnswer,
|
|
290
|
+
getQuestionFromIdentifiers,
|
|
291
|
+
hasHintAndCorrection: true,
|
|
292
|
+
};
|
|
@@ -24,7 +24,7 @@ const getAnswer = (identifiers) => {
|
|
|
24
24
|
const points = getPoints(identifiers);
|
|
25
25
|
const u = VectorConstructor.fromPoints(points[1], points[0]);
|
|
26
26
|
const v = VectorConstructor.fromPoints(points[1], points[2]);
|
|
27
|
-
const ps = u.scalarProduct(v);
|
|
27
|
+
const ps = u.scalarProduct(v).simplify();
|
|
28
28
|
const normU = u.getNorm();
|
|
29
29
|
const normV = v.getNorm();
|
|
30
30
|
const cos = frac(ps, multiply(normU, normV)).simplify();
|
package/lib/exercises/math/geometry/vectors/scalarProduct/findCoordinatesToOrthogonalize.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"findCoordinatesToOrthogonalize.d.ts","sourceRoot":"","sources":["../../../../../../src/exercises/math/geometry/vectors/scalarProduct/findCoordinatesToOrthogonalize.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,
|
|
1
|
+
{"version":3,"file":"findCoordinatesToOrthogonalize.d.ts","sourceRoot":"","sources":["../../../../../../src/exercises/math/geometry/vectors/scalarProduct/findCoordinatesToOrthogonalize.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EAeT,MAAM,6BAA6B,CAAC;AAGrC,OAAO,EAEL,iBAAiB,EAClB,MAAM,+BAA+B,CAAC;AAQvC,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,iBAAiB,CAAC;IACxB,IAAI,EAAE,iBAAiB,CAAC;CACzB,CAAC;AA0HF,eAAO,MAAM,8BAA8B,EAAE,QAAQ,CAAC,WAAW,CAsBhE,CAAC"}
|
|
@@ -4,9 +4,10 @@ import { rationalVEA } from "../../../../../exercises/vea/rationalVEA.js";
|
|
|
4
4
|
import { VectorConstructor, } from "../../../../../math/geometry/vector.js";
|
|
5
5
|
import { RationalConstructor } from "../../../../../math/numbers/rationals/rational.js";
|
|
6
6
|
import { randint } from "../../../../../math/utils/random/randint.js";
|
|
7
|
-
import { equal } from "../../../../../tree/nodes/equations/equalNode.js";
|
|
7
|
+
import { equal, EqualNode } from "../../../../../tree/nodes/equations/equalNode.js";
|
|
8
8
|
import { coinFlip } from "../../../../../utils/alea/coinFlip.js";
|
|
9
9
|
import { handleVEAError } from "../../../../../utils/errors/handleVEAError.js";
|
|
10
|
+
import { alignTex } from "../../../../../utils/latex/alignTex.js";
|
|
10
11
|
const getPropositions = (n, { answer }) => {
|
|
11
12
|
const propositions = [];
|
|
12
13
|
addValidProp(propositions, answer);
|
|
@@ -29,10 +30,34 @@ const getInstruction = (identifiers) => {
|
|
|
29
30
|
|
|
30
31
|
Pour quelle valeur de $x$ les vecteurs $${u.toTex()}$ et $${v.toTex()}$ sont-ils orthogonaux ?`;
|
|
31
32
|
};
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
const getHint = () => {
|
|
34
|
+
return `Deux vecteurs sont orthogonaux si et seulement leur produit scalaire est nul.`;
|
|
35
|
+
};
|
|
36
|
+
const getCorrection = (identifiers) => {
|
|
37
|
+
const { uIds, vIds } = identifiers;
|
|
38
|
+
const u = VectorConstructor.fromIdentifiers(uIds);
|
|
39
|
+
const v = VectorConstructor.fromIdentifiers(vIds);
|
|
40
|
+
const psNode = u.scalarProduct(v);
|
|
41
|
+
const psNodeSimp = psNode.simplify();
|
|
42
|
+
const equation = new EqualNode(psNodeSimp, (0).toTree());
|
|
43
|
+
const steps = [];
|
|
44
|
+
const res = equation.isolate("x", { steps });
|
|
45
|
+
return `On sait que deux vecteurs sont orthogonaux si et seulement si leur produit scaraire est nul.
|
|
46
|
+
|
|
47
|
+
On commence donc par calculer $${u.toTex()}\\cdot ${v.toTex()}$ :
|
|
48
|
+
|
|
49
|
+
${alignTex([
|
|
50
|
+
[`${u.toTex()}\\cdot ${v.toTex()}`, "=", u.scalarProduct(v).toTex()],
|
|
51
|
+
["", "=", u.scalarProduct(v).simplify().toTex()],
|
|
52
|
+
])}
|
|
53
|
+
|
|
54
|
+
Il suffit alors de résoudre l'équation $${u.toTex()}\\cdot ${v.toTex()} = 0$ :
|
|
55
|
+
|
|
56
|
+
${alignTex(steps.map((e) => [e]))}
|
|
57
|
+
|
|
58
|
+
Les vecteurs $${u.toTex()}$ et $${v.toTex()}$ sont donc orthogonaux si et seulement si $${res.toTex()}$.
|
|
59
|
+
`;
|
|
60
|
+
};
|
|
36
61
|
const getKeys = () => {
|
|
37
62
|
return [];
|
|
38
63
|
};
|
|
@@ -88,8 +113,8 @@ const getQuestionFromIdentifiers = (identifiers) => {
|
|
|
88
113
|
keys: getKeys(identifiers),
|
|
89
114
|
answerFormat: "tex",
|
|
90
115
|
identifiers,
|
|
91
|
-
|
|
92
|
-
|
|
116
|
+
hint: getHint(identifiers),
|
|
117
|
+
correction: getCorrection(identifiers),
|
|
93
118
|
};
|
|
94
119
|
};
|
|
95
120
|
export const findCoordinatesToOrthogonalize = {
|
|
@@ -108,4 +133,5 @@ export const findCoordinatesToOrthogonalize = {
|
|
|
108
133
|
// getCorrection,
|
|
109
134
|
getAnswer,
|
|
110
135
|
getQuestionFromIdentifiers,
|
|
136
|
+
hasHintAndCorrection: true,
|
|
111
137
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "./scalarProductIsOrthogonalVecsBasisIJ.js";
|
|
2
|
+
export * from "./scalarProductIsOrthogonalVecsUsingCoords.js";
|
|
3
|
+
export * from "./scalarProductIsRightTriangleUsingPointCoords.js";
|
|
4
|
+
export * from "./scalarProductIsPointOnPerpendicularBisector.js";
|
|
5
|
+
export * from "./scalarProductIsPointOnCircle.js";
|
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/exercises/math/geometry/vectors/scalarProduct/orth/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAC;AAC1D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,mDAAmD,CAAC;AAClE,cAAc,kDAAkD,CAAC;AACjE,cAAc,mCAAmC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from "./scalarProductIsOrthogonalVecsBasisIJ.js";
|
|
2
|
+
export * from "./scalarProductIsOrthogonalVecsUsingCoords.js";
|
|
3
|
+
export * from "./scalarProductIsRightTriangleUsingPointCoords.js";
|
|
4
|
+
export * from "./scalarProductIsPointOnPerpendicularBisector.js";
|
|
5
|
+
export * from "./scalarProductIsPointOnCircle.js";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Exercise } from "../../../../../../exercises/exercise.js";
|
|
2
|
+
import { NodeIdentifiers } from "../../../../../../tree/nodes/nodeConstructor.js";
|
|
3
|
+
type Identifiers = {
|
|
4
|
+
nodeIdsU: NodeIdentifiers[];
|
|
5
|
+
nodeIdsV: NodeIdentifiers[];
|
|
6
|
+
};
|
|
7
|
+
export declare const scalarProductIsOrthogonalVecsBasisIJ: Exercise<Identifiers>;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=scalarProductIsOrthogonalVecsBasisIJ.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scalarProductIsOrthogonalVecsBasisIJ.d.ts","sourceRoot":"","sources":["../../../../../../../src/exercises/math/geometry/vectors/scalarProduct/orth/scalarProductIsOrthogonalVecsBasisIJ.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EAWT,MAAM,6BAA6B,CAAC;AAIrC,OAAO,EAEL,eAAe,EAChB,MAAM,qCAAqC,CAAC;AAO7C,KAAK,WAAW,GAAG;IACjB,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,QAAQ,EAAE,eAAe,EAAE,CAAC;CAC7B,CAAC;AAqNF,eAAO,MAAM,oCAAoC,EAAE,QAAQ,CAAC,WAAW,CAsBtE,CAAC"}
|