Files
TD-R/Ma feuille d'exercice2 - Bibm@th.net_files/oXHR.js.téléchargement
Félix MARQUET 0eb717651e feat: add exercise sheets for Bernoulli, integrals, binomial distribution, and cardinality
- Added exercise sheets for Bernoulli experiments including probability of success, failure, and simulation of multiple experiments.
- Added exercise sheets for calculating integrals using different methods such as rectangles, Simpson's rule, and the integrate function.
- Added exercise sheets for binomial distribution including probability calculations and cumulative probability.
- Added exercise sheets for calculating the cardinality of sets including unique elements and empty sets.
2024-12-20 08:26:12 +01:00

22 lines
493 B
Plaintext

/* Fonction qui crée une requête de type XMLHttpRequest */
function getXMLHttpRequest() {
var xhr = null;
if (window.XMLHttpRequest || window.ActiveXObject) {
if (window.ActiveXObject) {
try {
xhr = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
} else {
xhr = new XMLHttpRequest();
}
} else {
alert("Votre navigateur ne gère par l'ajout dans une feuille d'exercices");
return null;
}
return xhr;
}