{"id":449,"date":"2023-07-29T21:10:12","date_gmt":"2023-07-29T21:10:12","guid":{"rendered":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/"},"modified":"2023-07-29T21:10:12","modified_gmt":"2023-07-29T21:10:12","slug":"praktische-regel-empirische-problemen","status":"publish","type":"post","link":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/","title":{"rendered":"Problemen bij het oefenen van vuistregels"},"content":{"rendered":"<p><script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/mathjs\/5.1.1\/math.js\"><\/script><script src=\"https:\/\/cdn.jsdelivr.net\/npm\/jstat@latest\/dist\/jstat.min.js\"><\/script><\/p>\n<style>\n@import url('https:\/\/fonts.googleapis.com\/css?family=Droid+Serif|Raleway');<\/p>\n<p>h1 {\ncolor: black;\ntext-align: center;\nmargin-top: 15px;\nmargin-bottom: 0px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>h2 {\ncolor: black;\nfont-size: 20px;\ntext-align: center;\nmargin-bottom: 15px;\nmargin-top: 15px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>p {\ncolor: black;\ntext-align: center;\nmargin-bottom: 15px;\nmargin-top: 15px;\nfont-family: 'Raleway', sans-serif;\n}<\/p>\n<p>#words_intro {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#solution_div {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#words_output {\ntext-align: center;\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#words_outro {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\n}<\/p>\n<p>#words {\ncolor: black;\nfont-family: Raleway;\nmax-width: 550px;\nmargin: 25px auto;\nline-height: 1.75;\npadding-left: 100px;\n}<\/p>\n<p>#calcTitle {\ntext-align: center;\nfont-size: 20px;\nmargin-bottom: 0px;\nfont-family: 'Raleway', serif;\n}<\/p>\n<p>#hr_top {\nwidth: 70%;\nmargin-bottom: 15px;\nmargin-top: 15px;\nborder: none;\nheight: 2px;\ncolor: black;\nbackground-color: black;\n}<\/p>\n<p>#hr_bottom {\nwidth: 30%;\nmargin-top: 15px;\nborder: none;\nheight: 2px;\ncolor: black;\nbackground-color: black;\n}<\/p>\n<p>.input_label_calc {\n    display: inline-block;\n    vertical-align: baseline;\n    width: 350px;\n}<\/p>\n<p>    #button_calc {\n      border: 1px solid;\n      border-radius: 10px;\n      margin-top: 20px;\n      padding: 10px 10px;\n      cursor: pointer;\n      outline: none;\n      background-color: white;\n      color: black;\n      font-family: 'Work Sans', sans-serif;\n      border: 1px solid grey;\n      \/* Green *\/\n    }<\/p>\n<p>    #button_calc:hover {\n      background-color: #f6f6f6;\n      border: 1px solid black;\n    }<\/p>\n<p>\t    .label_radio {\n\ttext-align: center;\n}\n<\/style>\n<div id=\"words_intro\">De <b>vuistregel<\/b> , ook wel de 68-95-99.7-regel genoemd, stelt dat voor een gegeven dataset met een normale verdeling:<\/div>\n<div id=\"words_intro\"> <b>68%<\/b> van de gegevenswaarden ligt binnen \u00e9\u00e9n standaardafwijking van het gemiddelde.<\/div>\n<div id=\"words_intro\"> <b>95%<\/b> van de gegevenswaarden ligt binnen twee standaarddeviaties van het gemiddelde.<\/div>\n<div id=\"words_intro\"> <b>99,7%<\/b> van de gegevenswaarden vallen binnen drie standaarddeviaties van het gemiddelde.<\/div>\n<div id=\"words_intro\"> Test je kennis van de vuistregel met behulp van de onderstaande oefenproblemen.<\/div>\n<hr id=\"hr_top\">\n<div id=\"words_intro\"> De planthoogte in een bepaalde tuin is normaal verdeeld met een gemiddelde van <span id=\"mean\">12,3<\/span> inch en een standaardafwijking van <span id=\"sd\">4,1<\/span> inch.<\/div>\n<div id=\"words_intro\"> <b>Gebruik de vuistregel om het percentage planten te schatten dat <span id=\"scenario\">tussen de 8,2 en 16,4<\/span> centimeter lang is.<\/b><\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"number\" id=\"answer\" value=\"\"> % <\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"button\" id=\"button_calc\" onclick=\"check()\" value=\"Check Answer\"><\/div>\n<div id=\"words_output\"><b><span id=\"output\"><\/span><\/b> <\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"button\" id=\"button_calc\" onclick=\"solution()\" value=\"Show Solution\"><\/div>\n<div id=\"solution_div\"><span id=\"solution_words\"><\/span><\/div>\n<div id=\"words\"><input class=\"input_label_calc\" type=\"button\" id=\"button_calc\" onclick=\"gen()\" value=\"Generate New Question\"><\/div>\n<p><script><\/p>\n<p>var globalThing= {}; \/\/ Globally scoped object<\/p>\n<p>function check() {\t\n    if(globalThing.q_selected==\"between\") {\n        if(globalThing.sd_multiplier==1) {\n        var solution = 68;\n        }\n        if(globalThing.sd_multiplier==2) {\n        var solution = 95;\n        }\n        if(globalThing.sd_multiplier==3) {\n        var solution = 99.7;\n        }\n    } \/\/end between\n    if(globalThing.q_selected==\"less than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 84;\n            } else {\n            var solution = 16;\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 97.5;\n            } else {\n            var solution = 2.5;\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 99.85;\n            } else {\n            var solution = 0.15;\n            }\n        }\n    } \/\/end less than\n    if(globalThing.q_selected==\"greater than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 16;\n            } else {\n            var solution = 84;\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 2.5;\n            } else {\n            var solution = 97.5;\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 0.15;\n            } else {\n            var solution = 99.85;\n            }\n        }\n    } \/\/end greater than<\/p>\n<p>\/\/check if user-entered solution matches correct solution\nvar user_answer = document.getElementById('answer').value;\n    if (user_answer == solution) {\n    document.getElementById('output').innerHTML = \"Correct!\"\n    } else {\n    document.getElementById('output').innerHTML = \"Not quite yet...\"\n    }<\/p>\n<p>\/\/toggle answer showing\nvar result_display = document.getElementById(\"words_output\");\nresult_display.style.display = \"block\";\n} \/\/end massive check() function<\/p>\n<p>function solution() {\t\n    if(globalThing.q_selected==\"between\") {\n        if(globalThing.sd_multiplier==1) {\n        var solution = 68;\n        document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located one standard deviation below the mean and \" + globalThing.sd_above.toFixed(1) + \" is located one standard deviation above the mean.<\/p>\n<p>Thus, <b>68%<\/b> of plants are between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n        }\n        if(globalThing.sd_multiplier==2) {\n        var solution = 95;\n        document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located two standard deviations below the mean and \" + globalThing.sd_above.toFixed(1) + \" is located two standard deviations above the mean.<\/p>\n<p>Thus, <b>95%<\/b> of plants are between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n        }\n        if(globalThing.sd_multiplier==3) {\n        var solution = 99.7;\n        document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located three standard deviations below the mean and \" + globalThing.sd_above.toFixed(1) + \" is located three standard deviations above the mean.<\/p>\n<p>Thus, <b>99.7%<\/b> of plants are between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n        }\n    } \/\/end between\n    if(globalThing.q_selected==\"less than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 84;\n                    document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located one standard deviation above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 34% = <b>84%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>84%<\/b> of plants are less than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 16;                              document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located one standard deviation below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 34% = 84% of values fall above \" + globalThing.sd_below.toFixed(1) + \". This means that 100% - 84% = <b>16%<\/b> of values fall below \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>16%<\/b> of plants are less than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 97.5;                           \n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located two standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 47.5% = <b>97.5%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>97.5%<\/b> of plants are less than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 2.5;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located two standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 47.5% = 97.5% of values fall above \" + globalThing.sd_below.toFixed(1) + \". This means that 100% - 97.5% = <b>2.5%<\/b> of values fall below \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>2.5%<\/b> of plants are less than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 99.85;                        \n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located three standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 49.85% = <b>99.85%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>99.85%<\/b> of plants are less than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 0.15;                       \n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviations below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located three standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 49.85% = 99.85% of values fall above \" + globalThing.sd_below.toFixed(1) + \". This means that 100% - 99.85% = <b>0.15%<\/b> of values fall below \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>0.15%<\/b> of plants are less than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n    } \/\/end less than\n    if(globalThing.q_selected==\"greater than\") {\n        if(globalThing.sd_multiplier==1) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 16;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located one standard deviation above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 34% = <b>84%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \". This means that 100% - 84% = <b>16%<\/b> of values fall above \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>16%<\/b> of plants are greater than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 84;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 68% of data values fall within one standard deviation of the mean. This means that 34% of values fall between the mean and one standard deviation below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located one standard deviation below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 34% = <b>84%<\/b> of values fall above \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>84%<\/b> of plants are greater than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==2) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 2.5;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located two standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 47.5% = <b>97.5%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \". This means that 100% - 97.5% = <b>2.5%<\/b> of values fall above \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>2.5%<\/b> of plants are greater than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 97.5;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 95% of data values fall within two standard deviations of the mean. This means that 47.5% of values fall between the mean and two standard deviations below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located two standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 47.5% = <b>97.5%<\/b> of values fall above \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>97.5%<\/b> of plants are greater than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n        if(globalThing.sd_multiplier==3) {\n            if(globalThing.sd_selected==globalThing.sd_above) {\n            var solution = 0.15;\n          document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviations above the mean.<\/p>\n<p>In this example, \" + globalThing.sd_above.toFixed(1) + \" is located three standard deviations above the mean. Since we know that 50% of data values fall below the mean in a normal distribution, a total of 50% + 49.85% = <b>99.85%<\/b> of values fall below \" + globalThing.sd_above.toFixed(1) + \". This means that 100% - 99.85% = <b>0.15%<\/b> of values fall above \" + globalThing.sd_above.toFixed(1) + \".<\/p>\n<p>Thus, <b>0.15%<\/b> of plants are greater than \" + globalThing.sd_above.toFixed(1) + \" inches tall.\";\n            } else {\n            var solution = 99.85;\n            document.getElementById('solution_words').innerHTML = \"The Empirical Rule states that for a given dataset with a normal distribution, 99.7% of data values fall within three standard deviations of the mean. This means that 49.85% of values fall between the mean and three standard deviation below the mean.<\/p>\n<p>In this example, \" + globalThing.sd_below.toFixed(1) + \" is located three standard deviations below the mean. Since we know that 50% of data values fall above the mean in a normal distribution, a total of 50% + 49.85% = <b>99.85%<\/b> of values fall above \" + globalThing.sd_below.toFixed(1) + \".<\/p>\n<p>Thus, <b>99.85%<\/b> of plants are greater than \" + globalThing.sd_below.toFixed(1) + \" inches tall.\";\n            }\n        }\n    } \/\/end greater than<\/p>\n<p>\/\/toggle hide\/show solution\n  var solution_div = document.getElementById(\"solution_div\");\n  solution_div.style.display = \"block\";\n} \/\/end massive solution() function<\/p>\n<p>function gen() {\t\nvar mean = Math.round(jStat.uniform.sample(20, 50)*10)\/10;\nvar sd = Math.round(jStat.uniform.sample(2, 6)*10)\/10;<\/p>\n<p>var sd_options = [1, 2, 3];\nglobalThing.sd_multiplier = sd_options[Math.floor(Math.random()*sd_options .length)];<\/p>\n<p>globalThing.sd_above = mean - (-globalThing.sd_multiplier*sd);\nglobalThing.sd_below = mean - (globalThing.sd_multiplier*sd);<\/p>\n<p>sd_above_below = [globalThing.sd_above, globalThing.sd_below];\nglobalThing.sd_selected = sd_above_below[Math.floor(Math.random()*sd_above_below.length)];<\/p>\n<p>var q_options = [\"between\", \"less than\", \"greater than\"];\nglobalThing.q_selected = q_options[Math.floor(Math.random()*q_options .length)];<\/p>\n<p>if (globalThing.q_selected == \"less than\") {\ndocument.getElementById('scenario').innerHTML = \"less than \" + globalThing.sd_selected.toFixed(1);\n} else if (globalThing.q_selected == \"greater than\") {\ndocument.getElementById('scenario').innerHTML = \"greater than \" + globalThing.sd_selected.toFixed(1);\n} else {\ndocument.getElementById('scenario').innerHTML = \"between \" + globalThing.sd_below.toFixed(1) + \" and \" + globalThing.sd_above.toFixed(1);\n}<\/p>\n<p>\/\/fill in mean and sd in initial question\ndocument.getElementById('mean').innerHTML = mean;\ndocument.getElementById('sd').innerHTML = sd;<\/p>\n<p>\/\/toggle answer & solution to hide and clear input field\nvar result_display = document.getElementById(\"words_output\");\nresult_display.style.display = \"none\";\nvar solution_div = document.getElementById(\"solution_div\");\nsolution_div.style.display = \"none\";\ndocument.getElementById('answer').value = \"\";\n} \/\/end massive gen() function<\/p>\n<p>\/\/generate initial question\ngen();\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>De vuistregel , ook wel de 68-95-99.7-regel genoemd, stelt dat voor een gegeven dataset met een normale verdeling: 68% van de gegevenswaarden ligt binnen \u00e9\u00e9n standaardafwijking van het gemiddelde. 95% van de gegevenswaarden ligt binnen twee standaarddeviaties van het gemiddelde. 99,7% van de gegevenswaarden vallen binnen drie standaarddeviaties van het gemiddelde. Test je kennis van [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-449","post","type-post","status-publish","format-standard","hentry","category-gids"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Vuistregels Oefenproblemen - Statorialen<\/title>\n<meta name=\"description\" content=\"Op deze pagina vindt u oefenproblemen om u te helpen de vuistregel te begrijpen, wat een belangrijke regel in de statistiek is.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Vuistregels Oefenproblemen - Statorialen\" \/>\n<meta property=\"og:description\" content=\"Op deze pagina vindt u oefenproblemen om u te helpen de vuistregel te begrijpen, wat een belangrijke regel in de statistiek is.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/\" \/>\n<meta property=\"og:site_name\" content=\"Statorials\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-29T21:10:12+00:00\" \/>\n<meta name=\"author\" content=\"Dr.benjamin anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dr.benjamin anderson\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/\",\"url\":\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/\",\"name\":\"Vuistregels Oefenproblemen - Statorialen\",\"isPartOf\":{\"@id\":\"https:\/\/statorials.org\/nl\/#website\"},\"datePublished\":\"2023-07-29T21:10:12+00:00\",\"dateModified\":\"2023-07-29T21:10:12+00:00\",\"author\":{\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\"},\"description\":\"Op deze pagina vindt u oefenproblemen om u te helpen de vuistregel te begrijpen, wat een belangrijke regel in de statistiek is.\",\"breadcrumb\":{\"@id\":\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Thuis\",\"item\":\"https:\/\/statorials.org\/nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Problemen bij het oefenen van vuistregels\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/statorials.org\/nl\/#website\",\"url\":\"https:\/\/statorials.org\/nl\/\",\"name\":\"Statorials\",\"description\":\"Uw gids voor statistische competentie\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/statorials.org\/nl\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219\",\"name\":\"Dr.benjamin anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"contentUrl\":\"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg\",\"caption\":\"Dr.benjamin anderson\"},\"description\":\"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder\",\"sameAs\":[\"http:\/\/statorials.org\/nl\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Vuistregels Oefenproblemen - Statorialen","description":"Op deze pagina vindt u oefenproblemen om u te helpen de vuistregel te begrijpen, wat een belangrijke regel in de statistiek is.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/","og_locale":"de_DE","og_type":"article","og_title":"Vuistregels Oefenproblemen - Statorialen","og_description":"Op deze pagina vindt u oefenproblemen om u te helpen de vuistregel te begrijpen, wat een belangrijke regel in de statistiek is.","og_url":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/","og_site_name":"Statorials","article_published_time":"2023-07-29T21:10:12+00:00","author":"Dr.benjamin anderson","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Dr.benjamin anderson"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/","url":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/","name":"Vuistregels Oefenproblemen - Statorialen","isPartOf":{"@id":"https:\/\/statorials.org\/nl\/#website"},"datePublished":"2023-07-29T21:10:12+00:00","dateModified":"2023-07-29T21:10:12+00:00","author":{"@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219"},"description":"Op deze pagina vindt u oefenproblemen om u te helpen de vuistregel te begrijpen, wat een belangrijke regel in de statistiek is.","breadcrumb":{"@id":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/statorials.org\/nl\/praktische-regel-empirische-problemen\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Thuis","item":"https:\/\/statorials.org\/nl\/"},{"@type":"ListItem","position":2,"name":"Problemen bij het oefenen van vuistregels"}]},{"@type":"WebSite","@id":"https:\/\/statorials.org\/nl\/#website","url":"https:\/\/statorials.org\/nl\/","name":"Statorials","description":"Uw gids voor statistische competentie","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/statorials.org\/nl\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/d4b8842173cca1bb62cdec41860e4219","name":"Dr.benjamin anderson","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/statorials.org\/nl\/#\/schema\/person\/image\/","url":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","contentUrl":"http:\/\/statorials.org\/nl\/wp-content\/uploads\/2023\/10\/Dr.-Benjamin-Anderson-96x96.jpg","caption":"Dr.benjamin anderson"},"description":"Ik ben Benjamin, een gepensioneerde hoogleraar statistiek die nu een toegewijde Statorials-lesgever is. Ik heb uitgebreide ervaring en expertise op het gebied van statistiek en ik ben vastbesloten om mijn kennis te delen met studenten via Statorials. Lees verder","sameAs":["http:\/\/statorials.org\/nl"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/449","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/comments?post=449"}],"version-history":[{"count":0,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/posts\/449\/revisions"}],"wp:attachment":[{"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/media?parent=449"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/categories?post=449"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/statorials.org\/nl\/wp-json\/wp\/v2\/tags?post=449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}