math-exercises 3.0.199 → 3.0.201

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.
Files changed (523) hide show
  1. package/lib/exercises/exercise.d.ts +14 -1
  2. package/lib/exercises/exercise.d.ts.map +1 -1
  3. package/lib/exercises/math/_debug/debugReorder1.d.ts +8 -0
  4. package/lib/exercises/math/_debug/debugReorder1.d.ts.map +1 -0
  5. package/lib/exercises/math/_debug/debugReorder1.js +81 -0
  6. package/lib/exercises/math/_debug/debugReorder2.d.ts +10 -0
  7. package/lib/exercises/math/_debug/debugReorder2.d.ts.map +1 -0
  8. package/lib/exercises/math/_debug/debugReorder2.js +88 -0
  9. package/lib/exercises/math/_debug/debugReorder3.d.ts +10 -0
  10. package/lib/exercises/math/_debug/debugReorder3.d.ts.map +1 -0
  11. package/lib/exercises/math/_debug/debugReorder3.js +81 -0
  12. package/lib/exercises/math/_debug/index.d.ts +3 -1
  13. package/lib/exercises/math/_debug/index.d.ts.map +1 -1
  14. package/lib/exercises/math/_debug/index.js +3 -1
  15. package/lib/exercises/math/calcul/factorial/index.d.ts +2 -0
  16. package/lib/exercises/math/calcul/factorial/index.d.ts.map +1 -0
  17. package/lib/exercises/math/calcul/factorial/index.js +1 -0
  18. package/lib/exercises/math/calcul/factorial/simplifyQuotientOfFactorialToProduct.d.ts +8 -0
  19. package/lib/exercises/math/calcul/factorial/simplifyQuotientOfFactorialToProduct.d.ts.map +1 -0
  20. package/lib/exercises/math/calcul/factorial/simplifyQuotientOfFactorialToProduct.js +199 -0
  21. package/lib/exercises/math/calcul/fractions/fractionsSumsPrimeDenominators.js +1 -1
  22. package/lib/exercises/math/calcul/index.d.ts +1 -0
  23. package/lib/exercises/math/calcul/index.d.ts.map +1 -1
  24. package/lib/exercises/math/calcul/index.js +1 -0
  25. package/lib/exercises/math/calculLitteral/inequations/index.d.ts +1 -0
  26. package/lib/exercises/math/calculLitteral/inequations/index.d.ts.map +1 -1
  27. package/lib/exercises/math/calculLitteral/inequations/index.js +1 -0
  28. package/lib/exercises/math/calculLitteral/inequations/inequationCenteredInterval.d.ts +14 -0
  29. package/lib/exercises/math/calculLitteral/inequations/inequationCenteredInterval.d.ts.map +1 -0
  30. package/lib/exercises/math/calculLitteral/inequations/inequationCenteredInterval.js +263 -0
  31. package/lib/exercises/math/combinatory/anagrams.d.ts.map +1 -1
  32. package/lib/exercises/math/combinatory/anagrams.js +89 -68
  33. package/lib/exercises/math/combinatory/combination/index.d.ts +3 -0
  34. package/lib/exercises/math/combinatory/combination/index.d.ts.map +1 -0
  35. package/lib/exercises/math/combinatory/combination/index.js +2 -0
  36. package/lib/exercises/math/combinatory/combination/mentalCalculateCombination.d.ts +11 -0
  37. package/lib/exercises/math/combinatory/combination/mentalCalculateCombination.d.ts.map +1 -0
  38. package/lib/exercises/math/combinatory/combination/mentalCalculateCombination.js +225 -0
  39. package/lib/exercises/math/combinatory/combination/writeCombinationFormulaUsingFactorial.d.ts +13 -0
  40. package/lib/exercises/math/combinatory/combination/writeCombinationFormulaUsingFactorial.d.ts.map +1 -0
  41. package/lib/exercises/math/combinatory/combination/writeCombinationFormulaUsingFactorial.js +285 -0
  42. package/lib/exercises/math/combinatory/index.d.ts +1 -0
  43. package/lib/exercises/math/combinatory/index.d.ts.map +1 -1
  44. package/lib/exercises/math/combinatory/index.js +1 -0
  45. package/lib/exercises/math/dataRepresentations/index.d.ts +1 -1
  46. package/lib/exercises/math/dataRepresentations/index.d.ts.map +1 -1
  47. package/lib/exercises/math/dataRepresentations/index.js +5 -1
  48. package/lib/exercises/math/dataRepresentations/scatterPlot/index.d.ts +0 -2
  49. package/lib/exercises/math/dataRepresentations/scatterPlot/index.d.ts.map +1 -1
  50. package/lib/exercises/math/dataRepresentations/scatterPlot/index.js +2 -2
  51. package/lib/exercises/math/dataRepresentations/scatterPlot/scatterPlotInterpreting.d.ts.map +1 -1
  52. package/lib/exercises/math/dataRepresentations/scatterPlot/scatterPlotInterpreting.js +1 -1
  53. package/lib/exercises/math/derivation/derivative/trigo/index.d.ts +2 -0
  54. package/lib/exercises/math/derivation/derivative/trigo/index.d.ts.map +1 -1
  55. package/lib/exercises/math/derivation/derivative/trigo/index.js +3 -0
  56. package/lib/exercises/math/derivation/derivative/trigo/productOfSinAXPlusBCosCXPlusDDerivative.d.ts +9 -0
  57. package/lib/exercises/math/derivation/derivative/trigo/productOfSinAXPlusBCosCXPlusDDerivative.d.ts.map +1 -0
  58. package/lib/exercises/math/derivation/derivative/trigo/productOfSinAXPlusBCosCXPlusDDerivative.js +209 -0
  59. package/lib/exercises/math/derivation/derivative/trigo/sinAndCosMixedWithSquareDerivative.d.ts +9 -0
  60. package/lib/exercises/math/derivation/derivative/trigo/sinAndCosMixedWithSquareDerivative.d.ts.map +1 -0
  61. package/lib/exercises/math/derivation/derivative/trigo/sinAndCosMixedWithSquareDerivative.js +359 -0
  62. package/lib/exercises/math/derivation/derivative/trigo/sinCosDerivativeRewriteUsingCos2PlusSin2Equals1.d.ts +11 -0
  63. package/lib/exercises/math/derivation/derivative/trigo/sinCosDerivativeRewriteUsingCos2PlusSin2Equals1.d.ts.map +1 -0
  64. package/lib/exercises/math/derivation/derivative/trigo/sinCosDerivativeRewriteUsingCos2PlusSin2Equals1.js +445 -0
  65. package/lib/exercises/math/derivation/problems/index.d.ts +0 -1
  66. package/lib/exercises/math/derivation/problems/index.d.ts.map +1 -1
  67. package/lib/exercises/math/derivation/problems/index.js +1 -1
  68. package/lib/exercises/math/derivation/problems/problemMovementOnLineFindSpeedAtPoint.d.ts.map +1 -1
  69. package/lib/exercises/math/derivation/problems/problemMovementOnLineFindSpeedAtPoint.js +5 -2
  70. package/lib/exercises/math/derivation/tangent/index.d.ts +0 -1
  71. package/lib/exercises/math/derivation/tangent/index.d.ts.map +1 -1
  72. package/lib/exercises/math/derivation/tangent/index.js +1 -1
  73. package/lib/exercises/math/derivation/variations/index.d.ts +1 -1
  74. package/lib/exercises/math/derivation/variations/index.d.ts.map +1 -1
  75. package/lib/exercises/math/derivation/variations/index.js +2 -1
  76. package/lib/exercises/math/derivation/variations/signVarTableAffinePlusCXLogX.d.ts +10 -0
  77. package/lib/exercises/math/derivation/variations/signVarTableAffinePlusCXLogX.d.ts.map +1 -0
  78. package/lib/exercises/math/derivation/variations/signVarTableAffinePlusCXLogX.js +222 -0
  79. package/lib/exercises/math/derivation/variations/signVarTableProductFExp.js +1 -1
  80. package/lib/exercises/math/derivation/variations/signVarTableQuotientFExp.js +1 -1
  81. package/lib/exercises/math/functions/affines/affineVarTableOnBoundedInterval.d.ts.map +1 -1
  82. package/lib/exercises/math/functions/affines/affineVarTableOnBoundedInterval.js +2 -3
  83. package/lib/exercises/math/functions/affines/index.d.ts +5 -0
  84. package/lib/exercises/math/functions/affines/index.d.ts.map +1 -1
  85. package/lib/exercises/math/functions/affines/index.js +5 -0
  86. package/lib/exercises/math/functions/integral/index.d.ts +1 -0
  87. package/lib/exercises/math/functions/integral/index.d.ts.map +1 -1
  88. package/lib/exercises/math/functions/integral/index.js +1 -0
  89. package/lib/exercises/math/functions/integral/integralTrinomialOverX2.d.ts +12 -0
  90. package/lib/exercises/math/functions/integral/integralTrinomialOverX2.d.ts.map +1 -0
  91. package/lib/exercises/math/functions/integral/integralTrinomialOverX2.js +280 -0
  92. package/lib/exercises/math/functions/logarithm/findLargestPossibleDomainOfLogF.d.ts +13 -0
  93. package/lib/exercises/math/functions/logarithm/findLargestPossibleDomainOfLogF.d.ts.map +1 -0
  94. package/lib/exercises/math/functions/logarithm/findLargestPossibleDomainOfLogF.js +622 -0
  95. package/lib/exercises/math/functions/logarithm/index.d.ts +5 -0
  96. package/lib/exercises/math/functions/logarithm/index.d.ts.map +1 -1
  97. package/lib/exercises/math/functions/logarithm/index.js +5 -0
  98. package/lib/exercises/math/functions/logarithm/logEquationLnAXPlusBEqualsK.d.ts +10 -0
  99. package/lib/exercises/math/functions/logarithm/logEquationLnAXPlusBEqualsK.d.ts.map +1 -0
  100. package/lib/exercises/math/functions/logarithm/logEquationLnAXPlusBEqualsK.js +172 -0
  101. package/lib/exercises/math/functions/logarithm/logInequationIntegerSolutions.d.ts +11 -0
  102. package/lib/exercises/math/functions/logarithm/logInequationIntegerSolutions.d.ts.map +1 -0
  103. package/lib/exercises/math/functions/logarithm/logInequationIntegerSolutions.js +163 -0
  104. package/lib/exercises/math/functions/logarithm/logInequationLnAXPlusBInfK.d.ts +18 -0
  105. package/lib/exercises/math/functions/logarithm/logInequationLnAXPlusBInfK.d.ts.map +1 -0
  106. package/lib/exercises/math/functions/logarithm/logInequationLnAXPlusBInfK.js +330 -0
  107. package/lib/exercises/math/functions/logarithm/logLinearCombinationSimplifiying.d.ts +11 -0
  108. package/lib/exercises/math/functions/logarithm/logLinearCombinationSimplifiying.d.ts.map +1 -0
  109. package/lib/exercises/math/functions/logarithm/logLinearCombinationSimplifiying.js +185 -0
  110. package/lib/exercises/math/index.d.ts +1 -0
  111. package/lib/exercises/math/index.d.ts.map +1 -1
  112. package/lib/exercises/math/index.js +1 -0
  113. package/lib/exercises/math/integration/fromExpr/areaBetweenCrossingCurvesFixedPosFromExpr.d.ts +15 -0
  114. package/lib/exercises/math/integration/fromExpr/areaBetweenCrossingCurvesFixedPosFromExpr.d.ts.map +1 -0
  115. package/lib/exercises/math/integration/fromExpr/areaBetweenCrossingCurvesFixedPosFromExpr.js +505 -0
  116. package/lib/exercises/math/integration/fromExpr/boundIntegralByBoundingFunctionWithAffinesFromExpr.d.ts +16 -0
  117. package/lib/exercises/math/integration/fromExpr/boundIntegralByBoundingFunctionWithAffinesFromExpr.d.ts.map +1 -0
  118. package/lib/exercises/math/integration/fromExpr/boundIntegralByBoundingFunctionWithAffinesFromExpr.js +433 -0
  119. package/lib/exercises/math/integration/fromExpr/boundIntegralByManualRectanglesMethodFromExpr.d.ts +15 -0
  120. package/lib/exercises/math/integration/fromExpr/boundIntegralByManualRectanglesMethodFromExpr.d.ts.map +1 -0
  121. package/lib/exercises/math/integration/fromExpr/boundIntegralByManualRectanglesMethodFromExpr.js +436 -0
  122. package/lib/exercises/math/integration/fromExpr/byParts/index.d.ts +3 -0
  123. package/lib/exercises/math/integration/fromExpr/byParts/index.d.ts.map +1 -0
  124. package/lib/exercises/math/integration/fromExpr/byParts/index.js +2 -0
  125. package/lib/exercises/math/integration/fromExpr/byParts/integralOfAXPlusBTimesExpKXByParts.d.ts +9 -0
  126. package/lib/exercises/math/integration/fromExpr/byParts/integralOfAXPlusBTimesExpKXByParts.d.ts.map +1 -0
  127. package/lib/exercises/math/integration/fromExpr/byParts/integralOfAXPlusBTimesExpKXByParts.js +234 -0
  128. package/lib/exercises/math/integration/fromExpr/byParts/integralOfPolynomialTimesLogXByParts.d.ts +12 -0
  129. package/lib/exercises/math/integration/fromExpr/byParts/integralOfPolynomialTimesLogXByParts.d.ts.map +1 -0
  130. package/lib/exercises/math/integration/fromExpr/byParts/integralOfPolynomialTimesLogXByParts.js +330 -0
  131. package/lib/exercises/math/integration/fromExpr/checkIsPrimitiveFromExpr.d.ts +15 -0
  132. package/lib/exercises/math/integration/fromExpr/checkIsPrimitiveFromExpr.d.ts.map +1 -0
  133. package/lib/exercises/math/integration/fromExpr/checkIsPrimitiveFromExpr.js +450 -0
  134. package/lib/exercises/math/integration/fromExpr/derivativeOfPrimitive.d.ts +10 -0
  135. package/lib/exercises/math/integration/fromExpr/derivativeOfPrimitive.d.ts.map +1 -0
  136. package/lib/exercises/math/integration/fromExpr/derivativeOfPrimitive.js +261 -0
  137. package/lib/exercises/math/integration/fromExpr/index.d.ts +8 -0
  138. package/lib/exercises/math/integration/fromExpr/index.d.ts.map +1 -0
  139. package/lib/exercises/math/integration/fromExpr/index.js +8 -0
  140. package/lib/exercises/math/integration/fromExpr/integralFromExpr.d.ts +13 -0
  141. package/lib/exercises/math/integration/fromExpr/integralFromExpr.d.ts.map +1 -0
  142. package/lib/exercises/math/integration/fromExpr/integralFromExpr.js +359 -0
  143. package/lib/exercises/math/integration/fromExpr/meanValue/index.d.ts +2 -0
  144. package/lib/exercises/math/integration/fromExpr/meanValue/index.d.ts.map +1 -0
  145. package/lib/exercises/math/integration/fromExpr/meanValue/index.js +1 -0
  146. package/lib/exercises/math/integration/fromExpr/meanValue/meanValueOfTrinomFromIntegralFromExpr.d.ts +14 -0
  147. package/lib/exercises/math/integration/fromExpr/meanValue/meanValueOfTrinomFromIntegralFromExpr.d.ts.map +1 -0
  148. package/lib/exercises/math/integration/fromExpr/meanValue/meanValueOfTrinomFromIntegralFromExpr.js +429 -0
  149. package/lib/exercises/math/integration/fromGraph/boundIntegralByManipulatingAutomaticRectanglesMethodFromGraph.d.ts +10 -0
  150. package/lib/exercises/math/integration/fromGraph/boundIntegralByManipulatingAutomaticRectanglesMethodFromGraph.d.ts.map +1 -0
  151. package/lib/exercises/math/integration/fromGraph/boundIntegralByManipulatingAutomaticRectanglesMethodFromGraph.js +286 -0
  152. package/lib/exercises/math/integration/fromGraph/imageOfPrimitiveByManipulatingIntegralBoundsFromGraph.d.ts +9 -0
  153. package/lib/exercises/math/integration/fromGraph/imageOfPrimitiveByManipulatingIntegralBoundsFromGraph.d.ts.map +1 -0
  154. package/lib/exercises/math/integration/fromGraph/imageOfPrimitiveByManipulatingIntegralBoundsFromGraph.js +231 -0
  155. package/lib/exercises/math/integration/fromGraph/index.d.ts +7 -0
  156. package/lib/exercises/math/integration/fromGraph/index.d.ts.map +1 -0
  157. package/lib/exercises/math/integration/fromGraph/index.js +6 -0
  158. package/lib/exercises/math/integration/fromGraph/integralOfAffineFromExprByComputingArea.d.ts +15 -0
  159. package/lib/exercises/math/integration/fromGraph/integralOfAffineFromExprByComputingArea.d.ts.map +1 -0
  160. package/lib/exercises/math/integration/fromGraph/integralOfAffineFromExprByComputingArea.js +464 -0
  161. package/lib/exercises/math/integration/fromGraph/integralOfAffineFromGraph.d.ts +15 -0
  162. package/lib/exercises/math/integration/fromGraph/integralOfAffineFromGraph.d.ts.map +1 -0
  163. package/lib/exercises/math/integration/fromGraph/integralOfAffineFromGraph.js +493 -0
  164. package/lib/exercises/math/integration/fromGraph/integralOfPiecewiseAffineFromGraph.d.ts +18 -0
  165. package/lib/exercises/math/integration/fromGraph/integralOfPiecewiseAffineFromGraph.d.ts.map +1 -0
  166. package/lib/exercises/math/integration/fromGraph/integralOfPiecewiseAffineFromGraph.js +466 -0
  167. package/lib/exercises/math/integration/fromGraph/varTableOfPrimitiveFromGraph.d.ts +10 -0
  168. package/lib/exercises/math/integration/fromGraph/varTableOfPrimitiveFromGraph.d.ts.map +1 -0
  169. package/lib/exercises/math/integration/fromGraph/varTableOfPrimitiveFromGraph.js +192 -0
  170. package/lib/exercises/math/integration/index.d.ts +4 -0
  171. package/lib/exercises/math/integration/index.d.ts.map +1 -0
  172. package/lib/exercises/math/integration/index.js +3 -0
  173. package/lib/exercises/math/integration/integralOfPiecewiseFunctionByUsingComputedIntegrals.d.ts +14 -0
  174. package/lib/exercises/math/integration/integralOfPiecewiseFunctionByUsingComputedIntegrals.d.ts.map +1 -0
  175. package/lib/exercises/math/integration/integralOfPiecewiseFunctionByUsingComputedIntegrals.js +222 -0
  176. package/lib/exercises/math/limits/frac1XTimesALogXPlusBLimit.d.ts +8 -0
  177. package/lib/exercises/math/limits/frac1XTimesALogXPlusBLimit.d.ts.map +1 -0
  178. package/lib/exercises/math/limits/frac1XTimesALogXPlusBLimit.js +121 -0
  179. package/lib/exercises/math/limits/index.d.ts +3 -0
  180. package/lib/exercises/math/limits/index.d.ts.map +1 -1
  181. package/lib/exercises/math/limits/index.js +3 -0
  182. package/lib/exercises/math/limits/kLogXPlusTrinomLimit.d.ts +12 -0
  183. package/lib/exercises/math/limits/kLogXPlusTrinomLimit.d.ts.map +1 -0
  184. package/lib/exercises/math/limits/kLogXPlusTrinomLimit.js +224 -0
  185. package/lib/exercises/math/limits/logOfPolynomialLimit.d.ts +10 -0
  186. package/lib/exercises/math/limits/logOfPolynomialLimit.d.ts.map +1 -0
  187. package/lib/exercises/math/limits/logOfPolynomialLimit.js +154 -0
  188. package/lib/exercises/math/limits/sequenceGeometricLimit.d.ts.map +1 -1
  189. package/lib/exercises/math/limits/sequenceGeometricLimit.js +9 -0
  190. package/lib/exercises/math/primitive/constantPrimitive.d.ts +8 -5
  191. package/lib/exercises/math/primitive/constantPrimitive.d.ts.map +1 -1
  192. package/lib/exercises/math/primitive/constantPrimitive.js +40 -21
  193. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfLinearCombination.d.ts +12 -0
  194. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfLinearCombination.d.ts.map +1 -0
  195. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfLinearCombination.js +170 -0
  196. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfSumFromDice.d.ts +7 -0
  197. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfSumFromDice.d.ts.map +1 -0
  198. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfSumFromDice.js +163 -0
  199. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfSumFromProbaLaw.d.ts +14 -0
  200. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfSumFromProbaLaw.d.ts.map +1 -0
  201. package/lib/exercises/math/probaStat/basicProbas/expectedValueOfSumFromProbaLaw.js +150 -0
  202. package/lib/exercises/math/probaStat/basicProbas/index.d.ts +5 -0
  203. package/lib/exercises/math/probaStat/basicProbas/index.d.ts.map +1 -1
  204. package/lib/exercises/math/probaStat/basicProbas/index.js +5 -0
  205. package/lib/exercises/math/probaStat/basicProbas/varianceOfLinearCombination.d.ts +12 -0
  206. package/lib/exercises/math/probaStat/basicProbas/varianceOfLinearCombination.d.ts.map +1 -0
  207. package/lib/exercises/math/probaStat/basicProbas/varianceOfLinearCombination.js +193 -0
  208. package/lib/exercises/math/probaStat/basicProbas/varianceOfMean.d.ts +13 -0
  209. package/lib/exercises/math/probaStat/basicProbas/varianceOfMean.d.ts.map +1 -0
  210. package/lib/exercises/math/probaStat/basicProbas/varianceOfMean.js +171 -0
  211. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialExpectedValueFromSituation.d.ts +9 -0
  212. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialExpectedValueFromSituation.d.ts.map +1 -0
  213. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialExpectedValueFromSituation.js +125 -0
  214. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindParamsFromSituation.d.ts +9 -0
  215. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindParamsFromSituation.d.ts.map +1 -0
  216. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindParamsFromSituation.js +126 -0
  217. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindProbaOfAtLeastOneSuccessFromSituation.d.ts +8 -0
  218. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindProbaOfAtLeastOneSuccessFromSituation.d.ts.map +1 -0
  219. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindProbaOfAtLeastOneSuccessFromSituation.js +150 -0
  220. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindProbaOfXCompKFromSituation.d.ts +15 -0
  221. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindProbaOfXCompKFromSituation.d.ts.map +1 -0
  222. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindProbaOfXCompKFromSituation.js +386 -0
  223. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindThresholdForNFromSituation.d.ts +14 -0
  224. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindThresholdForNFromSituation.d.ts.map +1 -0
  225. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialFindThresholdForNFromSituation.js +248 -0
  226. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialSituations.d.ts +47 -0
  227. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialSituations.d.ts.map +1 -0
  228. package/lib/exercises/math/probaStat/binomial/fromSituation/binomialSituations.js +184 -0
  229. package/lib/exercises/math/probaStat/binomial/fromSituation/buildTreeBernoulliFromSituation.d.ts +9 -0
  230. package/lib/exercises/math/probaStat/binomial/fromSituation/buildTreeBernoulliFromSituation.d.ts.map +1 -0
  231. package/lib/exercises/math/probaStat/binomial/fromSituation/buildTreeBernoulliFromSituation.js +120 -0
  232. package/lib/exercises/math/probaStat/binomial/fromSituation/index.d.ts +7 -0
  233. package/lib/exercises/math/probaStat/binomial/fromSituation/index.d.ts.map +1 -0
  234. package/lib/exercises/math/probaStat/binomial/fromSituation/index.js +6 -0
  235. package/lib/exercises/math/probaStat/binomial/index.d.ts +1 -0
  236. package/lib/exercises/math/probaStat/binomial/index.d.ts.map +1 -1
  237. package/lib/exercises/math/probaStat/binomial/index.js +1 -0
  238. package/lib/exercises/math/probaStat/index.d.ts +1 -0
  239. package/lib/exercises/math/probaStat/index.d.ts.map +1 -1
  240. package/lib/exercises/math/probaStat/index.js +1 -0
  241. package/lib/exercises/math/probaStat/stats2var/averagePoint.d.ts.map +1 -1
  242. package/lib/exercises/math/probaStat/stats2var/averagePoint.js +34 -2
  243. package/lib/exercises/math/probaStat/tchebychev/index.d.ts +5 -0
  244. package/lib/exercises/math/probaStat/tchebychev/index.d.ts.map +1 -0
  245. package/lib/exercises/math/probaStat/tchebychev/index.js +4 -0
  246. package/lib/exercises/math/probaStat/tchebychev/mean/index.d.ts +4 -0
  247. package/lib/exercises/math/probaStat/tchebychev/mean/index.d.ts.map +1 -0
  248. package/lib/exercises/math/probaStat/tchebychev/mean/index.js +3 -0
  249. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevFindRadiusToMinorizeProbaOfMeanInCenteredInterval.d.ts +11 -0
  250. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevFindRadiusToMinorizeProbaOfMeanInCenteredInterval.d.ts.map +1 -0
  251. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevFindRadiusToMinorizeProbaOfMeanInCenteredInterval.js +273 -0
  252. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevMajorizeProbaOfMeanOutOfCenteredInterval.d.ts +14 -0
  253. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevMajorizeProbaOfMeanOutOfCenteredInterval.d.ts.map +1 -0
  254. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevMajorizeProbaOfMeanOutOfCenteredInterval.js +219 -0
  255. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevMinorizeProbaOfMeanInCenteredInterval.d.ts +14 -0
  256. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevMinorizeProbaOfMeanInCenteredInterval.d.ts.map +1 -0
  257. package/lib/exercises/math/probaStat/tchebychev/mean/tchebychevMinorizeProbaOfMeanInCenteredInterval.js +245 -0
  258. package/lib/exercises/math/probaStat/tchebychev/tchebychevFindRadiusToMajorizeProbaOfXOutOfCenteredInterval.d.ts +10 -0
  259. package/lib/exercises/math/probaStat/tchebychev/tchebychevFindRadiusToMajorizeProbaOfXOutOfCenteredInterval.d.ts.map +1 -0
  260. package/lib/exercises/math/probaStat/tchebychev/tchebychevFindRadiusToMajorizeProbaOfXOutOfCenteredInterval.js +191 -0
  261. package/lib/exercises/math/probaStat/tchebychev/tchebychevMajorizeProbaOfXOutOfCenteredInterval.d.ts +10 -0
  262. package/lib/exercises/math/probaStat/tchebychev/tchebychevMajorizeProbaOfXOutOfCenteredInterval.d.ts.map +1 -0
  263. package/lib/exercises/math/probaStat/tchebychev/tchebychevMajorizeProbaOfXOutOfCenteredInterval.js +135 -0
  264. package/lib/exercises/math/probaStat/tchebychev/tchebychevMinorizeProbaOfXInCenteredInterval.d.ts +10 -0
  265. package/lib/exercises/math/probaStat/tchebychev/tchebychevMinorizeProbaOfXInCenteredInterval.d.ts.map +1 -0
  266. package/lib/exercises/math/probaStat/tchebychev/tchebychevMinorizeProbaOfXInCenteredInterval.js +155 -0
  267. package/lib/exercises/math/probaStat/trees/buildTreeBernoulli.d.ts +9 -0
  268. package/lib/exercises/math/probaStat/trees/buildTreeBernoulli.d.ts.map +1 -0
  269. package/lib/exercises/math/probaStat/trees/buildTreeBernoulli.js +124 -0
  270. package/lib/exercises/math/probaStat/trees/index.d.ts +1 -0
  271. package/lib/exercises/math/probaStat/trees/index.d.ts.map +1 -1
  272. package/lib/exercises/math/probaStat/trees/index.js +1 -0
  273. package/lib/exercises/math/sequences/geometric/graph/geometricFindThresholdFromGraph.d.ts +15 -0
  274. package/lib/exercises/math/sequences/geometric/graph/geometricFindThresholdFromGraph.d.ts.map +1 -0
  275. package/lib/exercises/math/sequences/geometric/graph/geometricFindThresholdFromGraph.js +255 -0
  276. package/lib/exercises/math/sequences/geometric/graph/geometricFindThresholdUsingCalculator.d.ts +15 -0
  277. package/lib/exercises/math/sequences/geometric/graph/geometricFindThresholdUsingCalculator.d.ts.map +1 -0
  278. package/lib/exercises/math/sequences/geometric/graph/geometricFindThresholdUsingCalculator.js +242 -0
  279. package/lib/exercises/math/sequences/geometric/graph/geometricPlaceFirstPoints.js +4 -4
  280. package/lib/exercises/math/sequences/geometric/graph/geometricSignOfReasonFromGraph.d.ts +12 -0
  281. package/lib/exercises/math/sequences/geometric/graph/geometricSignOfReasonFromGraph.d.ts.map +1 -0
  282. package/lib/exercises/math/sequences/geometric/graph/geometricSignOfReasonFromGraph.js +161 -0
  283. package/lib/exercises/math/sequences/geometric/graph/index.d.ts +4 -0
  284. package/lib/exercises/math/sequences/geometric/graph/index.d.ts.map +1 -1
  285. package/lib/exercises/math/sequences/geometric/graph/index.js +4 -0
  286. package/lib/exercises/math/sequences/geometric/index.d.ts +2 -0
  287. package/lib/exercises/math/sequences/geometric/index.d.ts.map +1 -1
  288. package/lib/exercises/math/sequences/geometric/index.js +2 -0
  289. package/lib/exercises/math/sequences/geometric/situations/geometricFindRankFromSituation.d.ts.map +1 -1
  290. package/lib/exercises/math/sequences/geometric/situations/geometricFindRankFromSituation.js +71 -48
  291. package/lib/exercises/math/sequences/geometric/situations/index.d.ts +2 -1
  292. package/lib/exercises/math/sequences/geometric/situations/index.d.ts.map +1 -1
  293. package/lib/exercises/math/sequences/geometric/situations/index.js +2 -2
  294. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfCartesianProductOfFiniteSets.d.ts +10 -0
  295. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfCartesianProductOfFiniteSets.d.ts.map +1 -0
  296. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfCartesianProductOfFiniteSets.js +224 -0
  297. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfCartesianProductOfFiniteSetsFromSituation.d.ts +18 -0
  298. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfCartesianProductOfFiniteSetsFromSituation.d.ts.map +1 -0
  299. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfCartesianProductOfFiniteSetsFromSituation.js +198 -0
  300. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfPowEK.d.ts +10 -0
  301. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfPowEK.d.ts.map +1 -0
  302. package/lib/exercises/math/sets/cartesianProduct/findCardinalOfPowEK.js +231 -0
  303. package/lib/exercises/math/sets/cartesianProduct/findNumberOfPasswordsWithLettersAndNumbers.d.ts +19 -0
  304. package/lib/exercises/math/sets/cartesianProduct/findNumberOfPasswordsWithLettersAndNumbers.d.ts.map +1 -0
  305. package/lib/exercises/math/sets/cartesianProduct/findNumberOfPasswordsWithLettersAndNumbers.js +187 -0
  306. package/lib/exercises/math/sets/cartesianProduct/index.d.ts +7 -0
  307. package/lib/exercises/math/sets/cartesianProduct/index.d.ts.map +1 -0
  308. package/lib/exercises/math/sets/cartesianProduct/index.js +6 -0
  309. package/lib/exercises/math/sets/cartesianProduct/proposeElementInCartesianProductOfFiniteSets.d.ts +15 -0
  310. package/lib/exercises/math/sets/cartesianProduct/proposeElementInCartesianProductOfFiniteSets.d.ts.map +1 -0
  311. package/lib/exercises/math/sets/cartesianProduct/proposeElementInCartesianProductOfFiniteSets.js +291 -0
  312. package/lib/exercises/math/sets/cartesianProduct/proposeElementInPowEK.d.ts +15 -0
  313. package/lib/exercises/math/sets/cartesianProduct/proposeElementInPowEK.d.ts.map +1 -0
  314. package/lib/exercises/math/sets/cartesianProduct/proposeElementInPowEK.js +274 -0
  315. package/lib/exercises/math/sets/combinations/findNumberOfCombinationsFromSituation.d.ts +17 -0
  316. package/lib/exercises/math/sets/combinations/findNumberOfCombinationsFromSituation.d.ts.map +1 -0
  317. package/lib/exercises/math/sets/combinations/findNumberOfCombinationsFromSituation.js +228 -0
  318. package/lib/exercises/math/sets/combinations/findNumberOfProductsOfCombinationsFromSituation.d.ts +17 -0
  319. package/lib/exercises/math/sets/combinations/findNumberOfProductsOfCombinationsFromSituation.d.ts.map +1 -0
  320. package/lib/exercises/math/sets/combinations/findNumberOfProductsOfCombinationsFromSituation.js +388 -0
  321. package/lib/exercises/math/sets/combinations/index.d.ts +4 -0
  322. package/lib/exercises/math/sets/combinations/index.d.ts.map +1 -0
  323. package/lib/exercises/math/sets/combinations/index.js +3 -0
  324. package/lib/exercises/math/sets/combinations/proposeCombination.d.ts +15 -0
  325. package/lib/exercises/math/sets/combinations/proposeCombination.d.ts.map +1 -0
  326. package/lib/exercises/math/sets/combinations/proposeCombination.js +347 -0
  327. package/lib/exercises/math/sets/index.d.ts +3 -0
  328. package/lib/exercises/math/sets/index.d.ts.map +1 -1
  329. package/lib/exercises/math/sets/index.js +3 -0
  330. package/lib/exercises/math/sets/partialPermutations/findNumberOfPartialPermutationsFromSituation.d.ts +16 -0
  331. package/lib/exercises/math/sets/partialPermutations/findNumberOfPartialPermutationsFromSituation.d.ts.map +1 -0
  332. package/lib/exercises/math/sets/partialPermutations/findNumberOfPartialPermutationsFromSituation.js +186 -0
  333. package/lib/exercises/math/sets/partialPermutations/findNumberOfPermutationsFromSituation.d.ts +17 -0
  334. package/lib/exercises/math/sets/partialPermutations/findNumberOfPermutationsFromSituation.d.ts.map +1 -0
  335. package/lib/exercises/math/sets/partialPermutations/findNumberOfPermutationsFromSituation.js +232 -0
  336. package/lib/exercises/math/sets/partialPermutations/index.d.ts +4 -0
  337. package/lib/exercises/math/sets/partialPermutations/index.d.ts.map +1 -0
  338. package/lib/exercises/math/sets/partialPermutations/index.js +3 -0
  339. package/lib/exercises/math/sets/partialPermutations/proposePartialPermutation.d.ts +15 -0
  340. package/lib/exercises/math/sets/partialPermutations/proposePartialPermutation.d.ts.map +1 -0
  341. package/lib/exercises/math/sets/partialPermutations/proposePartialPermutation.js +343 -0
  342. package/lib/exercises/math/spaceGeometry/basis/index.d.ts +6 -0
  343. package/lib/exercises/math/spaceGeometry/basis/index.d.ts.map +1 -1
  344. package/lib/exercises/math/spaceGeometry/basis/index.js +6 -0
  345. package/lib/exercises/math/spaceGeometry/basis/lineLineRelativePositionsFromCubeOuterPoints.d.ts +11 -0
  346. package/lib/exercises/math/spaceGeometry/basis/lineLineRelativePositionsFromCubeOuterPoints.d.ts.map +1 -0
  347. package/lib/exercises/math/spaceGeometry/basis/lineLineRelativePositionsFromCubeOuterPoints.js +576 -0
  348. package/lib/exercises/math/spaceGeometry/basis/linePlaneRelativePositionsFromCubeOuterPoints.d.ts +11 -0
  349. package/lib/exercises/math/spaceGeometry/basis/linePlaneRelativePositionsFromCubeOuterPoints.d.ts.map +1 -0
  350. package/lib/exercises/math/spaceGeometry/basis/linePlaneRelativePositionsFromCubeOuterPoints.js +595 -0
  351. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfPointInCubeCoordSystem.d.ts +11 -0
  352. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfPointInCubeCoordSystem.d.ts.map +1 -0
  353. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfPointInCubeCoordSystem.js +501 -0
  354. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfPointInCubeCoordSystemFromVecPath.d.ts +16 -0
  355. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfPointInCubeCoordSystemFromVecPath.d.ts.map +1 -0
  356. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfPointInCubeCoordSystemFromVecPath.js +753 -0
  357. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfVectorInCubeCoordSystem.d.ts +12 -0
  358. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfVectorInCubeCoordSystem.d.ts.map +1 -0
  359. package/lib/exercises/math/spaceGeometry/basis/spaceCoordinatesOfVectorInCubeCoordSystem.js +546 -0
  360. package/lib/exercises/math/spaceGeometry/basis/spaceVectorLinearCombinationFromCoords.d.ts +13 -0
  361. package/lib/exercises/math/spaceGeometry/basis/spaceVectorLinearCombinationFromCoords.d.ts.map +1 -0
  362. package/lib/exercises/math/spaceGeometry/basis/spaceVectorLinearCombinationFromCoords.js +233 -0
  363. package/lib/exercises/math/spaceGeometry/collinearity/checkAlignedSpacePointsFromCoords.d.ts +11 -0
  364. package/lib/exercises/math/spaceGeometry/collinearity/checkAlignedSpacePointsFromCoords.d.ts.map +1 -0
  365. package/lib/exercises/math/spaceGeometry/collinearity/checkAlignedSpacePointsFromCoords.js +192 -0
  366. package/lib/exercises/math/spaceGeometry/collinearity/checkAlignedSpacePointsFromVecPathsFromCubeOuterPoints.d.ts +15 -0
  367. package/lib/exercises/math/spaceGeometry/collinearity/checkAlignedSpacePointsFromVecPathsFromCubeOuterPoints.d.ts.map +1 -0
  368. package/lib/exercises/math/spaceGeometry/collinearity/checkAlignedSpacePointsFromVecPathsFromCubeOuterPoints.js +511 -0
  369. package/lib/exercises/math/spaceGeometry/collinearity/index.d.ts +3 -0
  370. package/lib/exercises/math/spaceGeometry/collinearity/index.d.ts.map +1 -0
  371. package/lib/exercises/math/spaceGeometry/collinearity/index.js +2 -0
  372. package/lib/exercises/math/spaceGeometry/index.d.ts +5 -0
  373. package/lib/exercises/math/spaceGeometry/index.d.ts.map +1 -1
  374. package/lib/exercises/math/spaceGeometry/index.js +5 -1
  375. package/lib/exercises/math/spaceGeometry/orthogonalProjection/findOrthogonalProjectionOfPointOnPlane.d.ts +22 -0
  376. package/lib/exercises/math/spaceGeometry/orthogonalProjection/findOrthogonalProjectionOfPointOnPlane.d.ts.map +1 -0
  377. package/lib/exercises/math/spaceGeometry/orthogonalProjection/findOrthogonalProjectionOfPointOnPlane.js +366 -0
  378. package/lib/exercises/math/spaceGeometry/orthogonalProjection/index.d.ts +2 -0
  379. package/lib/exercises/math/spaceGeometry/orthogonalProjection/index.d.ts.map +1 -0
  380. package/lib/exercises/math/spaceGeometry/orthogonalProjection/index.js +2 -0
  381. package/lib/exercises/math/spaceGeometry/parametricLine/index.d.ts +3 -0
  382. package/lib/exercises/math/spaceGeometry/parametricLine/index.d.ts.map +1 -0
  383. package/lib/exercises/math/spaceGeometry/parametricLine/index.js +2 -0
  384. package/lib/exercises/math/spaceGeometry/parametricLine/lineLineRelativePositionsFromParametricLines.d.ts +14 -0
  385. package/lib/exercises/math/spaceGeometry/parametricLine/lineLineRelativePositionsFromParametricLines.d.ts.map +1 -0
  386. package/lib/exercises/math/spaceGeometry/parametricLine/lineLineRelativePositionsFromParametricLines.js +325 -0
  387. package/lib/exercises/math/spaceGeometry/parametricLine/parametricLineFromPointAndDirectionVector.d.ts +13 -0
  388. package/lib/exercises/math/spaceGeometry/parametricLine/parametricLineFromPointAndDirectionVector.d.ts.map +1 -0
  389. package/lib/exercises/math/spaceGeometry/parametricLine/parametricLineFromPointAndDirectionVector.js +181 -0
  390. package/lib/exercises/math/spaceGeometry/planes/checkIsPointBelongingToPlane.d.ts +10 -0
  391. package/lib/exercises/math/spaceGeometry/planes/checkIsPointBelongingToPlane.d.ts.map +1 -0
  392. package/lib/exercises/math/spaceGeometry/planes/checkIsPointBelongingToPlane.js +208 -0
  393. package/lib/exercises/math/spaceGeometry/planes/findNormalVectorFromPlaneEquation.d.ts +8 -0
  394. package/lib/exercises/math/spaceGeometry/planes/findNormalVectorFromPlaneEquation.d.ts.map +1 -0
  395. package/lib/exercises/math/spaceGeometry/planes/findNormalVectorFromPlaneEquation.js +255 -0
  396. package/lib/exercises/math/spaceGeometry/planes/findNormalVectorFromPlanePointsCoords.d.ts +10 -0
  397. package/lib/exercises/math/spaceGeometry/planes/findNormalVectorFromPlanePointsCoords.d.ts.map +1 -0
  398. package/lib/exercises/math/spaceGeometry/planes/findNormalVectorFromPlanePointsCoords.js +232 -0
  399. package/lib/exercises/math/spaceGeometry/planes/index.d.ts +5 -1
  400. package/lib/exercises/math/spaceGeometry/planes/index.d.ts.map +1 -1
  401. package/lib/exercises/math/spaceGeometry/planes/index.js +6 -2
  402. package/lib/exercises/math/spaceGeometry/planes/planeEquationFromNormalVectorAndContainedPoint.d.ts +10 -0
  403. package/lib/exercises/math/spaceGeometry/planes/planeEquationFromNormalVectorAndContainedPoint.d.ts.map +1 -0
  404. package/lib/exercises/math/spaceGeometry/planes/planeEquationFromNormalVectorAndContainedPoint.js +273 -0
  405. package/lib/exercises/math/spaceGeometry/planes/planeEquationFromOrthogonalLineAndContainedPoint.d.ts +12 -0
  406. package/lib/exercises/math/spaceGeometry/planes/planeEquationFromOrthogonalLineAndContainedPoint.d.ts.map +1 -0
  407. package/lib/exercises/math/spaceGeometry/planes/planeEquationFromOrthogonalLineAndContainedPoint.js +398 -0
  408. package/lib/exercises/math/spaceGeometry/planes/planePlaneRelativePositions.d.ts +22 -0
  409. package/lib/exercises/math/spaceGeometry/planes/planePlaneRelativePositions.d.ts.map +1 -0
  410. package/lib/exercises/math/spaceGeometry/planes/planePlaneRelativePositions.js +509 -0
  411. package/lib/exercises/math/spaceGeometry/scalarProduct/angleFromScalarProductFromSpacePointCoords.d.ts +8 -0
  412. package/lib/exercises/math/spaceGeometry/scalarProduct/angleFromScalarProductFromSpacePointCoords.d.ts.map +1 -0
  413. package/lib/exercises/math/spaceGeometry/scalarProduct/angleFromScalarProductFromSpacePointCoords.js +229 -0
  414. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsOrthogonalLinesFromParametricReps.d.ts +9 -0
  415. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsOrthogonalLinesFromParametricReps.d.ts.map +1 -0
  416. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsOrthogonalLinesFromParametricReps.js +200 -0
  417. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsOrthogonalSpaceVecsFromCoords.d.ts +8 -0
  418. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsOrthogonalSpaceVecsFromCoords.d.ts.map +1 -0
  419. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsOrthogonalSpaceVecsFromCoords.js +176 -0
  420. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsSpaceVecOrthogonalToPlaneFromCoords.d.ts +9 -0
  421. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsSpaceVecOrthogonalToPlaneFromCoords.d.ts.map +1 -0
  422. package/lib/exercises/math/spaceGeometry/scalarProduct/checkIsSpaceVecOrthogonalToPlaneFromCoords.js +263 -0
  423. package/lib/exercises/math/spaceGeometry/scalarProduct/index.d.ts +6 -0
  424. package/lib/exercises/math/spaceGeometry/scalarProduct/index.d.ts.map +1 -0
  425. package/lib/exercises/math/spaceGeometry/scalarProduct/index.js +6 -0
  426. package/lib/exercises/math/spaceGeometry/scalarProduct/scalarProductFromCubeOuterPoints.d.ts +14 -0
  427. package/lib/exercises/math/spaceGeometry/scalarProduct/scalarProductFromCubeOuterPoints.d.ts.map +1 -0
  428. package/lib/exercises/math/spaceGeometry/scalarProduct/scalarProductFromCubeOuterPoints.js +497 -0
  429. package/lib/exercises/math/spaceGeometry/scalarProduct/scalarProductFromSpacePointCoords.d.ts +8 -0
  430. package/lib/exercises/math/spaceGeometry/scalarProduct/scalarProductFromSpacePointCoords.d.ts.map +1 -0
  431. package/lib/exercises/math/spaceGeometry/scalarProduct/scalarProductFromSpacePointCoords.js +173 -0
  432. package/lib/exercises/math/spaceGeometry/vectors/findLinearDecompositionWrtCoplanarUVFromCoords.d.ts +10 -0
  433. package/lib/exercises/math/spaceGeometry/vectors/findLinearDecompositionWrtCoplanarUVFromCoords.d.ts.map +1 -0
  434. package/lib/exercises/math/spaceGeometry/vectors/findLinearDecompositionWrtCoplanarUVFromCoords.js +236 -0
  435. package/lib/exercises/math/spaceGeometry/vectors/index.d.ts +2 -0
  436. package/lib/exercises/math/spaceGeometry/vectors/index.d.ts.map +1 -1
  437. package/lib/exercises/math/spaceGeometry/vectors/index.js +2 -0
  438. package/lib/exercises/math/spaceGeometry/vectors/spacePointsDistanceCalculation.d.ts +8 -0
  439. package/lib/exercises/math/spaceGeometry/vectors/spacePointsDistanceCalculation.d.ts.map +1 -0
  440. package/lib/exercises/math/spaceGeometry/vectors/spacePointsDistanceCalculation.js +156 -0
  441. package/lib/exercises/math/trigonometry/functions/index.d.ts +1 -0
  442. package/lib/exercises/math/trigonometry/functions/index.d.ts.map +1 -1
  443. package/lib/exercises/math/trigonometry/functions/index.js +1 -0
  444. package/lib/exercises/math/trigonometry/functions/parityOfCosAXTimesSinBX.d.ts +8 -0
  445. package/lib/exercises/math/trigonometry/functions/parityOfCosAXTimesSinBX.d.ts.map +1 -0
  446. package/lib/exercises/math/trigonometry/functions/parityOfCosAXTimesSinBX.js +193 -0
  447. package/lib/exercises/utils/data/randomDataTable.d.ts +4 -1
  448. package/lib/exercises/utils/data/randomDataTable.d.ts.map +1 -1
  449. package/lib/exercises/utils/data/randomDataTable.js +1 -2
  450. package/lib/exercises/vea/varLineVEA.d.ts.map +1 -1
  451. package/lib/exercises/vea/varLineVEA.js +15 -2
  452. package/lib/exercises/vea/xTableLineVEA.d.ts.map +1 -1
  453. package/lib/exercises/vea/xTableLineVEA.js +13 -2
  454. package/lib/index.d.ts +545 -26
  455. package/lib/index.d.ts.map +1 -1
  456. package/lib/latexTester.d.ts.map +1 -1
  457. package/lib/latexTester.js +9 -7
  458. package/lib/math/geometry/parametricLine.d.ts +1 -1
  459. package/lib/math/geometry/parametricLine.d.ts.map +1 -1
  460. package/lib/math/geometry/parametricLine.js +2 -2
  461. package/lib/math/geometry/spaceVector.d.ts +11 -1
  462. package/lib/math/geometry/spaceVector.d.ts.map +1 -1
  463. package/lib/math/geometry/spaceVector.js +18 -4
  464. package/lib/math/probability/randomVariable.d.ts +3 -2
  465. package/lib/math/probability/randomVariable.d.ts.map +1 -1
  466. package/lib/math/probability/randomVariable.js +14 -8
  467. package/lib/math/sets/setOperations.d.ts +9 -0
  468. package/lib/math/sets/setOperations.d.ts.map +1 -0
  469. package/lib/math/sets/setOperations.js +84 -0
  470. package/lib/math/sets/tuple.d.ts +12 -0
  471. package/lib/math/sets/tuple.d.ts.map +1 -0
  472. package/lib/math/sets/tuple.js +17 -0
  473. package/lib/math/systems/generalSystem.d.ts +3 -3
  474. package/lib/math/systems/generalSystem.d.ts.map +1 -1
  475. package/lib/math/systems/generalSystem.js +20 -17
  476. package/lib/math/utils/functions/functionComparison.d.ts.map +1 -1
  477. package/lib/math/utils/functions/functionComparison.js +2 -45
  478. package/lib/math/utils/functions/functionComposition.d.ts +3 -1
  479. package/lib/math/utils/functions/functionComposition.d.ts.map +1 -1
  480. package/lib/math/utils/functions/functionComposition.js +17 -17
  481. package/lib/math/utils/integration/rectanglesMethod.d.ts +6 -0
  482. package/lib/math/utils/integration/rectanglesMethod.d.ts.map +1 -0
  483. package/lib/math/utils/integration/rectanglesMethod.js +66 -0
  484. package/lib/math/utils/polynomial/polynomialUtils.d.ts +9 -1
  485. package/lib/math/utils/polynomial/polynomialUtils.d.ts.map +1 -1
  486. package/lib/math/utils/polynomial/polynomialUtils.js +66 -7
  487. package/lib/math/utils/sequences/situations/seqGeometricSituations.d.ts +34 -2
  488. package/lib/math/utils/sequences/situations/seqGeometricSituations.d.ts.map +1 -1
  489. package/lib/math/utils/sequences/situations/seqGeometricSituations.js +288 -47
  490. package/lib/server.js +25 -0
  491. package/lib/tests/questionTest.d.ts.map +1 -1
  492. package/lib/tests/questionTest.js +5 -2
  493. package/lib/tests/singleExo.test.js +2 -2
  494. package/lib/tree/nodes/functions/cosNode.d.ts +1 -1
  495. package/lib/tree/nodes/functions/cosNode.d.ts.map +1 -1
  496. package/lib/tree/nodes/functions/cosNode.js +5 -2
  497. package/lib/tree/nodes/functions/factorialNode.d.ts +1 -0
  498. package/lib/tree/nodes/functions/factorialNode.d.ts.map +1 -1
  499. package/lib/tree/nodes/functions/factorialNode.js +16 -1
  500. package/lib/tree/nodes/functions/logNode.d.ts.map +1 -1
  501. package/lib/tree/nodes/functions/logNode.js +2 -1
  502. package/lib/tree/nodes/operators/binomialCoefficientNode.d.ts +2 -0
  503. package/lib/tree/nodes/operators/binomialCoefficientNode.d.ts.map +1 -1
  504. package/lib/tree/nodes/operators/binomialCoefficientNode.js +34 -0
  505. package/lib/tree/nodes/sets/discreteSetNode.d.ts.map +1 -1
  506. package/lib/tree/nodes/sets/discreteSetNode.js +1 -0
  507. package/lib/tree/utilities/nodeComparator.d.ts +7 -0
  508. package/lib/tree/utilities/nodeComparator.d.ts.map +1 -1
  509. package/lib/tree/utilities/nodeComparator.js +59 -0
  510. package/lib/tree/utilities/nodeInspector.d.ts +2 -0
  511. package/lib/tree/utilities/nodeInspector.d.ts.map +1 -1
  512. package/lib/tree/utilities/nodeInspector.js +23 -1
  513. package/lib/tree/utilities/nodePrinter.d.ts +7 -0
  514. package/lib/tree/utilities/nodePrinter.d.ts.map +1 -0
  515. package/lib/tree/utilities/nodePrinter.js +36 -0
  516. package/lib/tree/utilities/nodeRewriter.d.ts.map +1 -1
  517. package/lib/tree/utilities/nodeRewriter.js +4 -1
  518. package/lib/types/keyIds.d.ts +1 -1
  519. package/lib/types/keyIds.d.ts.map +1 -1
  520. package/lib/utils/strings/splitAndKeep.d.ts +2 -0
  521. package/lib/utils/strings/splitAndKeep.d.ts.map +1 -0
  522. package/lib/utils/strings/splitAndKeep.js +13 -0
  523. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -403,6 +403,9 @@ declare const mathExercises: (Exercise<{
403
403
  }, {
404
404
  ratioTypes: string[];
405
405
  }> | Exercise<{
406
+ num: number;
407
+ denum: number;
408
+ }, Record<string, string | boolean | string[]>> | Exercise<{
406
409
  a: number;
407
410
  b: number;
408
411
  }, Record<string, string | boolean | string[]>> | Exercise<{
@@ -708,6 +711,12 @@ declare const mathExercises: (Exercise<{
708
711
  inequationSolutionFormat: string;
709
712
  functionTypeF: string;
710
713
  functionTypeG: string;
714
+ }> | Exercise<{
715
+ nodeIdsCenter: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
716
+ nodeIdsRadius: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
717
+ inegSymbol: import("./math/inequations/inequation.js").InegalitySymbols;
718
+ }, {
719
+ nbDigits: string;
711
720
  }> | Exercise<{
712
721
  rand: boolean;
713
722
  poly1: number[];
@@ -799,6 +808,17 @@ declare const mathExercises: (Exercise<{
799
808
  face2?: number;
800
809
  face3?: number;
801
810
  }, Record<string, string | boolean | string[]>> | Exercise<{
811
+ nodeIdsTotal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
812
+ nodeIdsPicked: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
813
+ operandType: string;
814
+ }, {
815
+ operandType: string;
816
+ }> | Exercise<{
817
+ total: number;
818
+ picked: number;
819
+ }, {
820
+ statementFormulaType: string;
821
+ }> | Exercise<{
802
822
  z1Re: number;
803
823
  z1Im: number;
804
824
  z2Re: number;
@@ -979,6 +999,12 @@ declare const mathExercises: (Exercise<{
979
999
  affinecoeffs: number[];
980
1000
  }, Record<string, string | boolean | string[]>> | Exercise<{
981
1001
  affinecoeffs: number[];
1002
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1003
+ nodeIdsU: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1004
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1005
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1006
+ nodeIdsU: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1007
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
982
1008
  }, Record<string, string | boolean | string[]>> | Exercise<{
983
1009
  affineA: number;
984
1010
  affineB: number;
@@ -1104,10 +1130,6 @@ declare const mathExercises: (Exercise<{
1104
1130
  x: number;
1105
1131
  k: number;
1106
1132
  nodeIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1107
- }, Record<string, string | boolean | string[]>> | Exercise<{
1108
- nodeIdsSlope: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1109
- nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1110
- nodeIdsAbscissa: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1111
1133
  }, Record<string, string | boolean | string[]>> | Exercise<{
1112
1134
  pofIds: import("./math/utils/polynomial/polynomialInterpolationUtils.js").PointOfFunctionIdentifiers[];
1113
1135
  cubicSplineIds: {
@@ -1175,11 +1197,6 @@ declare const mathExercises: (Exercise<{
1175
1197
  coeffsF: number[];
1176
1198
  }, {
1177
1199
  typeF: string;
1178
- }> | Exercise<{
1179
- coeffsF: number[];
1180
- isFOverExp: boolean;
1181
- }, {
1182
- typeF: string;
1183
1200
  }> | Exercise<{
1184
1201
  nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1185
1202
  typeF: string;
@@ -1222,6 +1239,10 @@ declare const mathExercises: (Exercise<{
1222
1239
  }, {
1223
1240
  doNotAskImages: boolean;
1224
1241
  }> | Exercise<{
1242
+ nodeIdsA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1243
+ nodeIdsB: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1244
+ nodeIdsC: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1245
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1225
1246
  coeffs: number[];
1226
1247
  }, Record<string, string | boolean | string[]>> | Exercise<{
1227
1248
  askConvex: boolean;
@@ -1240,13 +1261,6 @@ declare const mathExercises: (Exercise<{
1240
1261
  }, Record<string, string | boolean | string[]>> | Exercise<{
1241
1262
  nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1242
1263
  }, Record<string, string | boolean | string[]>> | Exercise<{
1243
- nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1244
- pofIds: import("./math/utils/polynomial/polynomialInterpolationUtils.js").PointOfFunctionIdentifiers[];
1245
- boundPHigh: number;
1246
- typeF: string;
1247
- }, {
1248
- typeF: string;
1249
- }> | Exercise<{
1250
1264
  nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1251
1265
  nodeIdsValueFunction: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1252
1266
  typeF: string;
@@ -1426,6 +1440,28 @@ declare const mathExercises: (Exercise<{
1426
1440
  }, Record<string, string | boolean | string[]>> | Exercise<{
1427
1441
  nodeIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1428
1442
  pointIds: import("./math/geometry/point.js").PointIdentifiers[];
1443
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1444
+ nodeIdsCoeff: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1445
+ formatExpr: string;
1446
+ }, {
1447
+ formatExpr: string;
1448
+ }> | Exercise<{
1449
+ pointIds: import("./math/geometry/point.js").PointIdentifiers[];
1450
+ }, {
1451
+ typeX: string;
1452
+ typeY: string;
1453
+ }> | Exercise<{
1454
+ b: number;
1455
+ secondPoint: number[];
1456
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1457
+ nodeIdsAbscissa: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1458
+ nodeIdsSlope: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1459
+ typeAbscissa: string;
1460
+ }, {
1461
+ typeAbscissa: string;
1462
+ }> | Exercise<{
1463
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1464
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1429
1465
  }, Record<string, string | boolean | string[]>> | Exercise<{
1430
1466
  xValues: number[];
1431
1467
  yValues: number[];
@@ -1460,11 +1496,6 @@ declare const mathExercises: (Exercise<{
1460
1496
  situationId: string;
1461
1497
  threshold: number;
1462
1498
  }, Record<string, string | boolean | string[]>> | Exercise<{
1463
- nodeIdsCoeff: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1464
- formatExpr: string;
1465
- }, {
1466
- formatExpr: string;
1467
- }> | Exercise<{
1468
1499
  xValue: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1469
1500
  polynomeCoeffs: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
1470
1501
  imageSyntaxText: boolean;
@@ -1877,6 +1908,35 @@ declare const mathExercises: (Exercise<{
1877
1908
  b: number;
1878
1909
  }, {
1879
1910
  useLog10?: boolean;
1911
+ }> | Exercise<{
1912
+ pm: number;
1913
+ a: number;
1914
+ b: number;
1915
+ c: number;
1916
+ d: number;
1917
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1918
+ a: number;
1919
+ b: number;
1920
+ k: number;
1921
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1922
+ nodeIdsQ: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1923
+ nodeIdsS: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1924
+ inegSymbol: import("./math/inequations/inequation.js").InegalitySymbols;
1925
+ }, Record<string, string | boolean | string[]>> | Exercise<{
1926
+ a: number;
1927
+ b: number;
1928
+ nodeIdsK: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1929
+ inegSymbol: import("./math/inequations/inequation.js").InegalitySymbols;
1930
+ nodeIdsIntervalRequired: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1931
+ }, {
1932
+ typeIntervalRequired: string;
1933
+ typeK: string;
1934
+ }> | Exercise<{
1935
+ dictNodeIds: Record<string, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers>;
1936
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1937
+ typeF: string;
1938
+ }, {
1939
+ typeF: string;
1880
1940
  }> | Exercise<{
1881
1941
  type: string;
1882
1942
  fctTex: string;
@@ -1947,6 +2007,11 @@ declare const mathExercises: (Exercise<{
1947
2007
  aU: number;
1948
2008
  bU: number;
1949
2009
  }, Record<string, string | boolean | string[]>> | Exercise<{
2010
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
2011
+ nodeIdsBounds: [import("./tree/nodes/nodeConstructor.js").NodeIdentifiers, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers];
2012
+ }, {
2013
+ orderOfP: string;
2014
+ }> | Exercise<{
1950
2015
  q: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
1951
2016
  a: number;
1952
2017
  }, Record<string, string | boolean | string[]>> | Exercise<{
@@ -2950,6 +3015,18 @@ declare const mathExercises: (Exercise<{
2950
3015
  b?: number;
2951
3016
  c?: number;
2952
3017
  polyPoints?: number[][];
3018
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3019
+ a: number;
3020
+ b: number;
3021
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3022
+ k: number;
3023
+ nodeIdsCoeffP: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3024
+ }, {
3025
+ isIndeterminateForm: boolean;
3026
+ }> | Exercise<{
3027
+ nodeIdsLimitAbscissa: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3028
+ nodeIdsP: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3029
+ isPossible: boolean;
2953
3030
  }, Record<string, string | boolean | string[]>> | Exercise<{
2954
3031
  a: string;
2955
3032
  b: string;
@@ -3122,7 +3199,9 @@ declare const mathExercises: (Exercise<{
3122
3199
  kIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3123
3200
  }, Record<string, string | boolean | string[]>> | Exercise<{
3124
3201
  c: number;
3125
- }, Record<string, string | boolean | string[]>> | Exercise<{
3202
+ }, {
3203
+ askParticularPrimitive?: boolean;
3204
+ }> | Exercise<{
3126
3205
  coeffs: number[];
3127
3206
  }, Record<string, string | boolean | string[]>> | Exercise<{
3128
3207
  a: number;
@@ -3334,6 +3413,30 @@ declare const mathExercises: (Exercise<{
3334
3413
  isSentence: boolean;
3335
3414
  }, {
3336
3415
  instructionType: string;
3416
+ }> | Exercise<{
3417
+ n: number;
3418
+ situationParams: import("./exercises/math/probaStat/binomial/fromSituation/binomialSituations.js").BinomialSituationParams;
3419
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3420
+ n: number;
3421
+ situationParams: import("./exercises/math/probaStat/binomial/fromSituation/binomialSituations.js").BinomialSituationParams;
3422
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3423
+ situationParams: import("./exercises/math/probaStat/binomial/fromSituation/binomialSituations.js").BinomialSituationParams;
3424
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3425
+ situationParams: import("./exercises/math/probaStat/binomial/fromSituation/binomialSituations.js").BinomialSituationParams;
3426
+ nodeIdsN: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3427
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3428
+ }, {
3429
+ probaType: string;
3430
+ typeN: string;
3431
+ }> | Exercise<{
3432
+ n: number;
3433
+ situationParams: import("./exercises/math/probaStat/binomial/fromSituation/binomialSituations.js").BinomialSituationParams;
3434
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3435
+ situationParams: import("./exercises/math/probaStat/binomial/fromSituation/binomialSituations.js").BinomialSituationParams;
3436
+ nodeIdsP: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3437
+ thresholdType: string;
3438
+ }, {
3439
+ thresholdType: string;
3337
3440
  }> | Exercise<{
3338
3441
  type: number;
3339
3442
  caracType: string;
@@ -3473,6 +3576,35 @@ declare const mathExercises: (Exercise<{
3473
3576
  indexColor: number;
3474
3577
  }[];
3475
3578
  }, Record<string, string | boolean | string[]>> | Exercise<{
3579
+ rvIdsX: {
3580
+ xValuesIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3581
+ yValuesIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3582
+ name: string;
3583
+ };
3584
+ rvIdsY: {
3585
+ xValuesIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3586
+ yValuesIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3587
+ name: string;
3588
+ };
3589
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3590
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3591
+ nodeIdsCoeff: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3592
+ }, {
3593
+ typeLinearCombination: string;
3594
+ }> | Exercise<{
3595
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3596
+ nodeIdsCoeff: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
3597
+ }, {
3598
+ typeLinearCombination: string;
3599
+ }> | Exercise<{
3600
+ arrNbSide: number[];
3601
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3602
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3603
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3604
+ nodeIdsN: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3605
+ }, {
3606
+ typeN: string;
3607
+ }> | Exercise<{
3476
3608
  indexSituation: number;
3477
3609
  eventIds: {
3478
3610
  type: "elementary";
@@ -3559,6 +3691,40 @@ declare const mathExercises: (Exercise<{
3559
3691
  params: import("./exercises/math/probaStat/trees/probaTreeSituations.js").ProbaTreeSituationParams;
3560
3692
  }, Record<string, string | boolean | string[]>> | Exercise<{
3561
3693
  params: import("./exercises/math/probaStat/trees/probaTreeSituations.js").ProbaTreeSituationParams;
3694
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3695
+ n: number;
3696
+ nodeIdsProba: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3697
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3698
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3699
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3700
+ nodeIdsA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3701
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3702
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3703
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3704
+ nodeIdsA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3705
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3706
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3707
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3708
+ nodeIdsPMax: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3709
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3710
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3711
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3712
+ nodeIdsA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3713
+ nodeIdsN: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3714
+ }, {
3715
+ typeN: string;
3716
+ }> | Exercise<{
3717
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3718
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3719
+ nodeIdsA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3720
+ nodeIdsN: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3721
+ }, {
3722
+ typeN: string;
3723
+ }> | Exercise<{
3724
+ nodeIdsE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3725
+ nodeIdsV: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3726
+ nodeIdsA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3727
+ nodeIdsPMin: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3562
3728
  }, Record<string, string | boolean | string[]>> | Exercise<{
3563
3729
  firstValue: number;
3564
3730
  askedRank: number;
@@ -3699,6 +3865,9 @@ declare const mathExercises: (Exercise<{
3699
3865
  reason: number;
3700
3866
  firstValue: number;
3701
3867
  }, Record<string, string | boolean | string[]>> | Exercise<{
3868
+ reason: number;
3869
+ firstValue: number;
3870
+ }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne> | Exercise<{
3702
3871
  value1: number;
3703
3872
  reason: number;
3704
3873
  rank1: number;
@@ -3764,6 +3933,11 @@ declare const mathExercises: (Exercise<{
3764
3933
  initial: number;
3765
3934
  reason: number;
3766
3935
  superfluousData?: import("./math/utils/sequences/situations/seqGeometricSituations.js").SituationGeometricSuperfluousData;
3936
+ }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne & import("./exercises/options/optionIsWithSuperfluousData.js").OptionIsWithSuperfluousData> | Exercise<{
3937
+ situationIndex: number;
3938
+ initial: number;
3939
+ reason: number;
3940
+ superfluousData?: import("./math/utils/sequences/situations/seqGeometricSituations.js").SituationGeometricSuperfluousData;
3767
3941
  }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne & import("./exercises/options/optionIsWithSuperfluousData.js").OptionIsWithSuperfluousData> | Exercise<{
3768
3942
  situationIndex: number;
3769
3943
  initial: number;
@@ -3775,6 +3949,7 @@ declare const mathExercises: (Exercise<{
3775
3949
  initial: number;
3776
3950
  reason: number;
3777
3951
  superfluousData?: import("./math/utils/sequences/situations/seqGeometricSituations.js").SituationGeometricSuperfluousData;
3952
+ valueAsked: number;
3778
3953
  }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne & import("./exercises/options/optionIsWithSuperfluousData.js").OptionIsWithSuperfluousData> | Exercise<{
3779
3954
  rank1: number;
3780
3955
  value1: number;
@@ -3798,6 +3973,13 @@ declare const mathExercises: (Exercise<{
3798
3973
  precisionReason: number;
3799
3974
  rankAsked: number;
3800
3975
  }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne> | Exercise<{
3976
+ rank1: number;
3977
+ value1: number;
3978
+ rank2: number;
3979
+ value2: number;
3980
+ precisionInitial: number;
3981
+ precisionReason: number;
3982
+ }, Record<string, string | boolean | string[]>> | Exercise<{
3801
3983
  isGeo: boolean;
3802
3984
  sequence: number[];
3803
3985
  }, {
@@ -3816,6 +3998,28 @@ declare const mathExercises: (Exercise<{
3816
3998
  q: number;
3817
3999
  start: number;
3818
4000
  }, Record<string, string | boolean | string[]>> | Exercise<{
4001
+ nodeIdsInitial: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4002
+ nodeIdsReason: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4003
+ firstRank: number;
4004
+ }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne & {
4005
+ typeSignReason: string[];
4006
+ }> | Exercise<{
4007
+ nodeIdsInitial: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4008
+ nodeIdsReason: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4009
+ firstRank: number;
4010
+ }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne> | Exercise<{
4011
+ nodeIdsInitial: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4012
+ nodeIdsReason: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4013
+ firstRank: number;
4014
+ nodeIdsValueThreshold: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4015
+ inegSymbol: import("./math/inequations/inequation.js").InegalitySymbols;
4016
+ }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne> | Exercise<{
4017
+ nodeIdsInitial: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4018
+ nodeIdsReason: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4019
+ firstRank: number;
4020
+ nodeIdsValueThreshold: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4021
+ inegSymbol: import("./math/inequations/inequation.js").InegalitySymbols;
4022
+ }, import("./exercises/options/optionFirstTermRankOne.js").OptionFirstTermRankOne> | Exercise<{
3819
4023
  rank: number;
3820
4024
  coeffs: number[];
3821
4025
  }, {
@@ -3904,6 +4108,108 @@ declare const mathExercises: (Exercise<{
3904
4108
  a: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
3905
4109
  isDecimal: boolean;
3906
4110
  }[];
4111
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4112
+ nodeIdsSetA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4113
+ nodeIdsSetB: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4114
+ isAskedACrossB: boolean;
4115
+ items: {
4116
+ tex: string;
4117
+ isValid: boolean;
4118
+ }[];
4119
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4120
+ nodeIdsSetA: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4121
+ nodeIdsSetB: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4122
+ isAskedACrossB: boolean;
4123
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4124
+ situation: {
4125
+ strInstruction: string;
4126
+ strCorrection: string;
4127
+ dictSets: Record<string, {
4128
+ cardinal: number;
4129
+ strInjected: string;
4130
+ strExplain: string;
4131
+ }>;
4132
+ nodeIdsCardinal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4133
+ };
4134
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4135
+ strDescriptionE: string;
4136
+ nodeIdsSetE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4137
+ k: number;
4138
+ items: {
4139
+ str: string;
4140
+ isValid: boolean;
4141
+ }[];
4142
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4143
+ strDescriptionE: string;
4144
+ nodeIdsSetE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4145
+ k: number;
4146
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4147
+ situation: {
4148
+ strInstruction: string;
4149
+ strCorrection: string;
4150
+ arrSets: {
4151
+ cardinal: number;
4152
+ nbSamples: number;
4153
+ strInjected: string;
4154
+ strExplain: string;
4155
+ }[];
4156
+ nodeIdsCardinal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4157
+ };
4158
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4159
+ strDescriptionE: string;
4160
+ nodeIdsSetE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4161
+ k: number;
4162
+ items: {
4163
+ str: string;
4164
+ isValid: boolean;
4165
+ }[];
4166
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4167
+ situation: {
4168
+ strInstruction: string;
4169
+ strCorrection: string;
4170
+ dictSets: Record<string, {
4171
+ value: number;
4172
+ }>;
4173
+ nodeIdsCardinal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4174
+ };
4175
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4176
+ situation: {
4177
+ strInstruction: string;
4178
+ strHint: string;
4179
+ strCorrection: string;
4180
+ dictSets: Record<string, {
4181
+ value: number;
4182
+ }>;
4183
+ nodeIdsCardinal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4184
+ };
4185
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4186
+ strDescriptionE: string;
4187
+ nodeIdsSetE: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4188
+ k: number;
4189
+ items: {
4190
+ str: string;
4191
+ isValid: boolean;
4192
+ }[];
4193
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4194
+ situation: {
4195
+ strInstruction: string;
4196
+ strHint: string;
4197
+ strCorrection: string;
4198
+ dictSets: Record<string, {
4199
+ value: number;
4200
+ }>;
4201
+ nodeIdsCardinal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4202
+ };
4203
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4204
+ situation: {
4205
+ strInstruction: string;
4206
+ strHint: string;
4207
+ strCorrection: string;
4208
+ dictSets: Record<string, {
4209
+ value: number;
4210
+ }>;
4211
+ nodeIdsCardinal: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4212
+ };
3907
4213
  }, Record<string, string | boolean | string[]>> | Exercise<{
3908
4214
  x: number;
3909
4215
  y: number;
@@ -3924,6 +4230,11 @@ declare const mathExercises: (Exercise<{
3924
4230
  vx: number;
3925
4231
  vy: number;
3926
4232
  vz: number;
4233
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4234
+ spacePointIdsForVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4235
+ nodeIdsCoeffs: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
4236
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4237
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
3927
4238
  }, Record<string, string | boolean | string[]>> | Exercise<{
3928
4239
  l: number;
3929
4240
  L: number;
@@ -3939,6 +4250,71 @@ declare const mathExercises: (Exercise<{
3939
4250
  arrPoolSpacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
3940
4251
  indexAsked: number;
3941
4252
  }, Record<string, string | boolean | string[]>> | Exercise<{
4253
+ spacePointIdsCubeOrigin: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4254
+ spacePointIdsCubeVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4255
+ spacePointIdsBaseVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4256
+ spacePointIdsAskedWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4257
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4258
+ spacePointIdsCubeOrigin: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4259
+ spacePointIdsCubeVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4260
+ spacePointIdsBaseVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4261
+ spacePointIdsStartWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4262
+ spacePointIdsEndWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4263
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4264
+ spacePointIdsCubeOrigin: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4265
+ spacePointIdsCubeVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4266
+ spacePointIdsBaseVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4267
+ spacePointIdsWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4268
+ nodeIdsEquationForVecs: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4269
+ }, {
4270
+ nbStepsForVecPath: string;
4271
+ }> | Exercise<{
4272
+ spacePointIdsVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4273
+ nodeIdsLinearCombination: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4274
+ }, {
4275
+ isAllowRationalFactors: boolean;
4276
+ }> | Exercise<{
4277
+ spacePointIdsCubeOrigin: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4278
+ spacePointIdsCubeVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4279
+ spacePointIdsBaseVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4280
+ spacePointIdsWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4281
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4282
+ spacePointIdsCubeOrigin: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4283
+ spacePointIdsCubeVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4284
+ spacePointIdsBaseVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4285
+ spacePointIdsWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4286
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4287
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4288
+ nodeIdsPlaneEquation: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4289
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4290
+ spacePointIdsContainedPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4291
+ spaceVectorIdsNormalVec: import("./math/geometry/spaceVector.js").SpaceVectorIdentifiers;
4292
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4293
+ nodeIdsPlaneEquation: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4294
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4295
+ spacePointIdsContainedPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4296
+ spacePointIdsParallelLine: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4297
+ }, {
4298
+ typeDataForParallelLine: string;
4299
+ }> | Exercise<{
4300
+ idsP1: {
4301
+ spacePointIdsContained: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4302
+ spaceVectorIdsNormal: import("./math/geometry/spaceVector.js").SpaceVectorIdentifiers;
4303
+ nodeIdsPlaneEquation: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4304
+ typeDefinitionData: string;
4305
+ texName: string;
4306
+ };
4307
+ idsP2: {
4308
+ spacePointIdsContained: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4309
+ spaceVectorIdsNormal: import("./math/geometry/spaceVector.js").SpaceVectorIdentifiers;
4310
+ nodeIdsPlaneEquation: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4311
+ typeDefinitionData: string;
4312
+ texName: string;
4313
+ };
4314
+ }, {
4315
+ typeDataForPlane1: string;
4316
+ typeDataForPlane2: string;
4317
+ }> | Exercise<{
3942
4318
  strOfX: string;
3943
4319
  radius: number;
3944
4320
  isDiameterGiven: boolean;
@@ -4014,6 +4390,42 @@ declare const mathExercises: (Exercise<{
4014
4390
  }, {
4015
4391
  projection: string;
4016
4392
  }> | Exercise<{
4393
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4394
+ }, {
4395
+ isAllowRationalCoeffs: boolean;
4396
+ }> | Exercise<{
4397
+ spacePointIdsCubeOrigin: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4398
+ spacePointIdsCubeVecsEndPoint: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4399
+ spacePointIdsWrtBaseVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4400
+ nodeIdsVecEquation: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
4401
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4402
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4403
+ nodeIdsSideLength: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4404
+ }, {
4405
+ typeSideLength: string;
4406
+ isIncludeMidpoints: boolean;
4407
+ }> | Exercise<{
4408
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4409
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4410
+ spacePointIdsForVecs: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4411
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4412
+ spacePointIdsForVecW: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4413
+ spacePointIdsForPlane: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4414
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4415
+ spacePointIdsForAB: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4416
+ spacePointIdsForUV: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4417
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4418
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4419
+ spaceVectorIds: import("./math/geometry/spaceVector.js").SpaceVectorIdentifiers;
4420
+ randInstr: number;
4421
+ nodeIdsFactor: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4422
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4423
+ spacePointIdsAB: import("./math/geometry/spacePoint.js").SpacePointIdentifiers[];
4424
+ spaceLineIds: {
4425
+ spacePointIds: import("./math/geometry/spacePoint.js").SpacePointIdentifiers;
4426
+ spaceVectorIds: import("./math/geometry/spaceVector.js").SpaceVectorIdentifiers;
4427
+ }[];
4428
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4017
4429
  sqrtOperand: number;
4018
4430
  }, Record<string, string | boolean | string[]>> | Exercise<{
4019
4431
  k: number;
@@ -4125,6 +4537,8 @@ declare const mathExercises: (Exercise<{
4125
4537
  b: number;
4126
4538
  c: number;
4127
4539
  d: number;
4540
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4541
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4128
4542
  }, Record<string, string | boolean | string[]>> | Exercise<{
4129
4543
  degree: number;
4130
4544
  radianNodeIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
@@ -4494,9 +4908,6 @@ declare const mathExercises: (Exercise<{
4494
4908
  yValues: number[];
4495
4909
  answerIndex: number;
4496
4910
  isLess: boolean;
4497
- }, Record<string, string | boolean | string[]>> | Exercise<{
4498
- cloudPointsIdentifiers: import("./math/geometry/CloudPoints.js").CloudPointsIdentifiers;
4499
- evolutionType: string;
4500
4911
  }, Record<string, string | boolean | string[]>> | Exercise<{
4501
4912
  quartiles: number[];
4502
4913
  }, Record<string, string | boolean | string[]>> | Exercise<{
@@ -4562,6 +4973,19 @@ declare const mathExercises: (Exercise<{
4562
4973
  }, Record<string, string | boolean | string[]>> | Exercise<{
4563
4974
  bounds: number[];
4564
4975
  data: number[];
4976
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4977
+ cloudPointsIdentifiers: import("./math/geometry/CloudPoints.js").CloudPointsIdentifiers;
4978
+ evolutionType: string;
4979
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4980
+ pointIds: import("./math/geometry/point.js").PointIdentifiers[];
4981
+ strGroupBy: string;
4982
+ nodeIdsDataClass: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
4983
+ }, Record<string, string | boolean | string[]>> | Exercise<{
4984
+ isRowBased: boolean;
4985
+ rowBasedDataTable: string[][];
4986
+ indexX: number;
4987
+ indexY: number;
4988
+ arrCoordsAsNodeIds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[][];
4565
4989
  }, Record<string, string | boolean | string[]>> | Exercise<{
4566
4990
  epsilon: number;
4567
4991
  l: number;
@@ -5034,7 +5458,102 @@ declare const mathExercises: (Exercise<{
5034
5458
  isGreaterCond: boolean;
5035
5459
  k?: number;
5036
5460
  randListAdd: number;
5037
- }, Record<string, string | boolean | string[]>>)[];
5461
+ }, Record<string, string | boolean | string[]>> | Exercise<{
5462
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5463
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5464
+ isConstantFunc: boolean;
5465
+ }, {
5466
+ functionType: string;
5467
+ typeSignBoundLow: string;
5468
+ typeSignBoundHigh: string;
5469
+ }> | Exercise<{
5470
+ chunkIds: {
5471
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5472
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5473
+ }[];
5474
+ nodeIdsIntegralBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5475
+ }, {
5476
+ nbIntegralChunks: string;
5477
+ typeSignBoundLow: string;
5478
+ typeSignBoundHigh: string;
5479
+ }> | Exercise<{
5480
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5481
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5482
+ isConstantFunc: boolean;
5483
+ }, {
5484
+ functionType: string;
5485
+ typeSignBoundLow: string;
5486
+ typeSignBoundHigh: string;
5487
+ }> | Exercise<{
5488
+ nodeIdsBigF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5489
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5490
+ }, Record<string, string | boolean | string[]>> | Exercise<{
5491
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5492
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5493
+ nbRectanglesRequired: number;
5494
+ }, Record<string, string | boolean | string[]>> | Exercise<{
5495
+ type: number;
5496
+ coeffs: number[];
5497
+ initTable: string[][];
5498
+ rootOfPrimitive: number;
5499
+ }, Record<string, string | boolean | string[]>> | Exercise<{
5500
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5501
+ nodeIdsBounds: [import("./tree/nodes/nodeConstructor.js").NodeIdentifiers, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers];
5502
+ nodeIdsVarOfIntegration: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5503
+ }, Record<string, string | boolean | string[]>> | Exercise<{
5504
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5505
+ nodeIdsBounds: [import("./tree/nodes/nodeConstructor.js").NodeIdentifiers, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers];
5506
+ }, Record<string, string | boolean | string[]>> | Exercise<{
5507
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5508
+ nodeIdsBounds: [import("./tree/nodes/nodeConstructor.js").NodeIdentifiers, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers];
5509
+ }, {
5510
+ orderOfP: string;
5511
+ }> | Exercise<{
5512
+ nodeIdsForP: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5513
+ nodeIdsBounds: [import("./tree/nodes/nodeConstructor.js").NodeIdentifiers, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers];
5514
+ }, {
5515
+ nbChangesOfSign: string;
5516
+ typeSignBoundLow: string;
5517
+ typeSignBoundHigh: string;
5518
+ }> | Exercise<{
5519
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5520
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5521
+ nbRectanglesRequired: number;
5522
+ }, {
5523
+ nbRectangles: string;
5524
+ typeSignBoundLow: string;
5525
+ typeSignBoundHigh: string;
5526
+ }> | Exercise<{
5527
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5528
+ nodeIdsBounds: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5529
+ nodeIdsAffineMinor: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5530
+ nodeIdsAffineMajor: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5531
+ nodeIdsVariableForIntegration: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5532
+ }, {
5533
+ typeSignBoundLow: string;
5534
+ typeSignBoundHigh: string;
5535
+ }> | Exercise<{
5536
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5537
+ nodeIdsBounds: [import("./tree/nodes/nodeConstructor.js").NodeIdentifiers, import("./tree/nodes/nodeConstructor.js").NodeIdentifiers];
5538
+ functionType: string;
5539
+ }, {
5540
+ functionTypes: string[];
5541
+ }> | Exercise<{
5542
+ nodeIdsPrimitiveCandidate: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5543
+ nodeIdsF: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5544
+ nameOfPrimitive: string;
5545
+ nameOfPrimitiveAsked: string;
5546
+ isPrimitive: boolean;
5547
+ }, {
5548
+ primitiveTypes: string[];
5549
+ }> | Exercise<{
5550
+ nodeIdsBoundsABC: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers[];
5551
+ nodeIdsIntegralAB: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5552
+ nodeIdsIntegralBC: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5553
+ nodeIdsVariableOfIntegration: import("./tree/nodes/nodeConstructor.js").NodeIdentifiers;
5554
+ }, {
5555
+ texIneqABC: string;
5556
+ }>)[];
5038
5557
  declare const pcExercises: (Exercise<{
5039
5558
  numbers: number[];
5040
5559
  }, Record<string, string | boolean | string[]>> | Exercise<{