{"id":2378,"date":"2024-08-08T17:09:12","date_gmt":"2024-08-08T16:09:12","guid":{"rendered":"https:\/\/beams-experiments.com\/?page_id=2378"},"modified":"2024-09-06T10:30:44","modified_gmt":"2024-09-06T09:30:44","slug":"risk-uncertainty-task-human","status":"publish","type":"page","link":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/","title":{"rendered":"Task-RU-H"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <title>Task-4: Risk &#038; Uncertainty Task<\/title>\n    <style>\n        table {\n            width: 100%;\n            border-collapse: collapse;\n        }\n        table, th, td {\n            border: 1px solid black;\n        }\n        th, td {\n            padding: 10px;\n            text-align: left;\n        }\n        th {\n            background-color: #f2f2f2;\n        }\n        h1 {\n            font-size: 18px;\n            text-align: center;\n            font-weight: bold;\n            margin-bottom: 8px;\n        }\n        p {\n            font-size: 14px;\n            margin-bottom: 8px;\n        }\n        input[type=range] {\n            -webkit-appearance: none;\n            width: 100%;\n            height: 5px;\n            background: #ddd;\n            outline: none;\n            opacity: 0.5;\n            transition: opacity .2s;\n        }\n        input[type=range]:hover {\n            opacity: 1;\n        }\n        .slider-container {\n            width: 100%;\n            margin: 20px 0;\n        }\n        .slider-moved {\n            opacity: 1;\n        }\n        .slider::-webkit-slider-thumb {\n            -webkit-appearance: none;\n            appearance: none;\n            width: 20px;\n            height: 20px;\n            background: #4CAF50;\n            cursor: pointer;\n        }\n        .slider::-moz-range-thumb {\n            width: 20px;\n            height: 20px;\n            background: #4CAF50;\n            cursor: pointer;\n        }\n        .slider-labels {\n            display: flex;\n            justify-content: space-between;\n            padding: 0 10px;\n        }\n        .slider-labels span {\n            position: relative;\n            text-align: center;\n            width: 1px;\n            background: #ddd;\n            height: 10px;\n            line-height: 20px;\n            font-size: 14px;\n        }\n        .small-font-table, .small-font-table th, .small-font-table td {\n            font-size: 13px;\n        }\n#loadingSpinnerPage {\n    border: 5px solid #f3f3f3; \/* Light grey border *\/\n    border-top: 5px solid #3498db; \/* Blue border for the top *\/\n    border-radius: 50%;\n    width: 60px;\n    height: 60px;\n    animation: spin 2s linear infinite;\n     position: fixed; \/* Position it relative to the viewport *\/\n    top: 50%; \/* Move it down 50% of the viewport height *\/\n    left: 50%; \/* Move it right 50% of the viewport width *\/\n    transform: translate(-50%, -50%); \/* Offset the spinner by half its width\/height to center it *\/\n    z-index: 9999; \/* Ensure it is above other content *\/\n}\n@keyframes spin {\n    0% { transform: rotate(0deg); }\n    100% { transform: rotate(360deg); }\n}\n\n #progressBarContainer {\n            width: 90%;\n            background-color: #e0e0e0;\n            border-radius: 5px;\n            margin-top: 10px;\n        }\n        #progressBar {\n            height: 10px;\n            background-color: #007bff;\n            border-radius: 5px;\n            width: 88%;\n        }\n        #progressText {\n            text-align: center;\n            margin-top: 5px;\n        }\n        #nextButton {\n            display: block;\n            padding: 10px 20px;\n            background-color: #007bff;\n            color: white;\n            border: none;\n            border-radius: 5px;\n            cursor: pointer;\n            margin: 10px auto;\n            width: fit-content;\n            position: relative;\n        }\n        #nextButton:disabled {\n            cursor: not-allowed;\n            opacity: 0.5;\n        }\n    <\/style>\n    <script src=\"https:\/\/code.jquery.com\/jquery-3.6.0.min.js\"><\/script>\n   <script>\nalert(\"Please wait for the full page to load before interacting with it. This may depend on your internet speed. You need to answer all questions, including your level of confidence, in order to proceed.\");\n$('#loadingSpinnerPage').show();\n\n    document.addEventListener('DOMContentLoaded', function() {\n        \/\/ Show alert when the page loads\n        \/\/alert(\"Please answer all questions, including your level of confidence, in order to proceed.\");\n$('#loadingSpinnerPage').hide();\n\/\/check if user already did this section\nif (localStorage.getItem('decisionHPG')) {\n    \/\/ If 'decisionHPG' already exists, make alert\n     alert ('You already did this section. Moving you back!');\n \/\/ Get the current task index from the URL or set to 0 if not present\n    const urlParams = new URLSearchParams(window.location.search);\n    let taskIndex = parseInt(urlParams.get('taskIndex')) || 0;\nwindow.location.href = 'https:\/\/beams-experiments.com\/index.php\/interim-task-questionnaire-h\/?taskIndex=' + taskIndex;\n  }\n\/\/tracking time screen not attended\nlet timePageNotVisibleStart = 0;\nlet totalTimeNotVisible = 0; \/\/ initialize totalTimeNotVisible\n\nfunction updateTotalTimeNotVisible() {\n    if (document.visibilityState === 'hidden' && timePageNotVisibleStart !== 0) {\n        \/\/ Calculate time page was not visible and reset start time\n        const notVisibleDuration = Date.now() - timePageNotVisibleStart;\n        totalTimeNotVisible += Math.round(notVisibleDuration \/ 1000);\n        timePageNotVisibleStart = 0;\n    }\n    \/\/ Optionally log the updated total time here for debugging\n}\n\ndocument.addEventListener('visibilitychange', () => {\n    \/\/console.log('Visibility changed to:', document.visibilityState);\n    if (document.visibilityState === 'visible') {\n        if (timePageNotVisibleStart !== 0) {\n            const notVisibleDuration = Date.now() - timePageNotVisibleStart;\n           \/\/ console.log('Not visible duration (ms):', notVisibleDuration);\n            totalTimeNotVisible += Math.round(notVisibleDuration \/ 1000); \/\/ Convert ms to seconds and accumulate\n            \/\/console.log('Total time not visible (s):', totalTimeNotVisible);\n            timePageNotVisibleStart = 0; \/\/ Reset the start time\n        }\n    } else {\n        timePageNotVisibleStart = Date.now();\n    }\n});\n        var startTime = Date.now();\n\n        const nextButton = document.getElementById('nextButton');\n        const questions = [\n            { choices: document.getElementsByName('question1'), confidence: document.getElementById('confidence1') },\n            { choices: document.getElementsByName('question2'), confidence: document.getElementById('confidence2') },\n            { choices: document.getElementsByName('question3'), confidence: document.getElementById('confidence3') },\n            { choices: document.getElementsByName('question4'), confidence: document.getElementById('confidence4') },\n        ];\n\n        let confidenceMoved = [false, false, false, false];\n        const taskSequence = JSON.parse(localStorage.getItem('taskSequence'));\n        const groupID = localStorage.getItem('groupID'); \/\/ Retrieve groupID from local storage\n\n        \/\/ Get the current task index from the URL or set to 0 if not present\n        const urlParams = new URLSearchParams(window.location.search);\n        let taskIndex = parseInt(urlParams.get('taskIndex')) || 0;\n\/\/ Total number of pages: 10 (1 pre-task questionnaire, 3 welcome, 5 tasks, 1 post-task questionnaire)\nconst totalPages = 15;\n\n\/\/ Function to update the progress bar and progress text\nfunction updateProgressBar(taskIndex) {\n    \/\/ Current page: Pre-task is page 4, tasks are 5-9, and post-task is page 10\n    const currentPage = taskIndex*2 + 5; \/\/ +5 because because all 4 proceeding pages; *2 to account for each task and its interim questionnaire \n\n    \/\/ Calculate the progress percentage\n    const progressPercentage = (currentPage \/ totalPages) * 100;\n\n    \/\/ Update the progress bar width\n    document.getElementById('progressBar').style.width = `${progressPercentage}%`;\n\n    \/\/ Update the progress text\n    document.getElementById('progressText').innerText = `Page ${currentPage} out of ${totalPages}`;\n}\n\n\/\/ Call updateProgressBar with the current taskIndex on page load\nupdateProgressBar(taskIndex);\n\n        \/\/ Function to go to the next task or the post-task questionnaire\n        function goToNextTask() {\n          \n               window.location.href = 'https:\/\/beams-experiments.com\/index.php\/interim-task-questionnaire-h\/?taskIndex=' + taskIndex;\n        }\n\n        function checkFormCompletion() {\n            const allQuestionsAnswered = questions.every((question, index) => {\n                const radioChecked = Array.from(question.choices).some(choice => choice.checked);\n                if (!radioChecked) {\n                   \/\/ console.log(`Radio buttons for question ${index + 1} not answered.`);\n                }\n                if (!confidenceMoved[index]) {\n                    \/\/console.log(`Confidence slider for question ${index + 1} not moved.`);\n                }\n                return radioChecked && confidenceMoved[index];\n            });\n            console.log('All questions answered:', allQuestionsAnswered);\n            nextButton.disabled = !allQuestionsAnswered;\n        }\n\n        questions.forEach((question, index) => {\n            question.choices.forEach(choice => {\n                choice.addEventListener('change', checkFormCompletion);\n            });\n            question.confidence.addEventListener('input', function() {\n                confidenceMoved[index] = true;\n                this.classList.add('slider-moved');\n                checkFormCompletion();\n            });\n        });\n\n        document.getElementById('decisionForm').addEventListener('submit', function(event) {\n            event.preventDefault();\n\n            \/\/ Save the decisions and confidence levels to localStorage\n            const decisions = ['decisionHPG', 'decisionLPG', 'decisionHPL', 'decisionLPL'];\n            const confidences = ['confidenceHPG', 'confidenceLPG', 'confidenceHPL', 'confidenceLPL'];\n\n            questions.forEach((question, index) => {\n                const selectedDecision = document.querySelector(`input[name=\"question${index + 1}\"]:checked`).value;\n            \/\/ Convert 'a' to 1 and 'b' to 2\n            const decisionNumeric = selectedDecision === 'a' ? 1 : 2;\n            console.log(`Selected decision for question ${index + 1}:`, decisionNumeric);\n\n            \/\/ Retrieve the confidence value for each question\n            const confidenceValue = question.confidence.value;\n            console.log(`Confidence value for question ${index + 1}:`, confidenceValue);\n\n                localStorage.setItem(decisions[index], decisionNumeric);\n                localStorage.setItem(confidences[index], question.confidence.value);\n            });\n            \/\/ Calculate task time \n            var endTime = Date.now();\n            \/\/ Calculate the duration in milliseconds\n            var durationMillis = endTime - startTime;\n            \/\/ Convert duration to seconds or minutes as needed\n            var riskTaskTime = durationMillis \/ 1000;\n            localStorage.setItem('riskTaskTime' , riskTaskTime);\n            console.log('riskTaskTime is', riskTaskTime);\n            localStorage.setItem('finalTotalTimeNotVisible', totalTimeNotVisible.toString());\n            goToNextTask();\n\n        });\n    });\n<\/script>\n<\/head>\n<body>\n    <form id=\"decisionForm\">\n<p><b>In this task, we would like to understand how you make choices. Consider the following:<\/b><\/p>\n        <p><strong>1. Please select your choice of preference:<\/strong><\/p>\n        <table class=\"small-font-table\">\n            <tr>\n                <td><input type=\"radio\" name=\"question1\" value=\"a\"> a. 95% chance to win $10,000<\/td>\n            <\/tr>\n            <tr>\n                <td><input type=\"radio\" name=\"question1\" value=\"b\"> b. 100% chance to obtain $9,499<\/td>\n            <\/tr>\n        <\/table>\n        <p><strong><b>How confident are you in your choice?<\/b><\/strong><\/p>\n        <div class=\"slider-container\">\n            <input type=\"range\" id=\"confidence1\" name=\"confidence1\" min=\"0\" max=\"10\" step=\"1\" class=\"slider\">\n            <div class=\"slider-labels\">\n                <span>0<\/span><span>1<\/span><span>2<\/span><span>3<\/span><span>4<\/span><span>5<\/span><span>6<\/span><span>7<\/span><span>8<\/span><span>9<\/span><span>10<\/span>\n            <\/div>\n        <\/div>\n\n        <p><strong>2. Please select your choice of preference:<\/strong><\/p>\n        <table class=\"small-font-table\">\n            <tr>\n                <td><input type=\"radio\" name=\"question2\" value=\"a\"> a. 5% chance to win $10,000<\/td>\n            <\/tr>\n            <tr>\n                <td><input type=\"radio\" name=\"question2\" value=\"b\"> b. 100% chance to obtain $501<\/td>\n            <\/tr>\n        <\/table>\n        <p><strong><b>How confident are you in your choice?<\/b><\/strong><\/p>\n        <div class=\"slider-container\">\n            <input type=\"range\" id=\"confidence2\" name=\"confidence2\" min=\"0\" max=\"10\" step=\"1\" class=\"slider\">\n            <div class=\"slider-labels\">\n                <span>0<\/span><span>1<\/span><span>2<\/span><span>3<\/span><span>4<\/span><span>5<\/span><span>6<\/span><span>7<\/span><span>8<\/span><span>9<\/span><span>10<\/span>\n            <\/div>\n        <\/div>\n\n        <p><strong>3. Please select your choice of preference:<\/strong><\/p>\n        <table class=\"small-font-table\">\n            <tr>\n                <td><input type=\"radio\" name=\"question3\" value=\"a\"> a. 95% chance to lose $10,000<\/td>\n            <\/tr>\n            <tr>\n                <td><input type=\"radio\" name=\"question3\" value=\"b\"> b. 100% chance to lose $9,499<\/td>\n            <\/tr>\n        <\/table>\n        <p><strong><b>How confident are you in your choice?<\/b><\/strong><\/p>\n        <div class=\"slider-container\">\n            <input type=\"range\" id=\"confidence3\" name=\"confidence3\" min=\"0\" max=\"10\" step=\"1\" class=\"slider\">\n            <div class=\"slider-labels\">\n                <span>0<\/span><span>1<\/span><span>2<\/span><span>3<\/span><span>4<\/span><span>5<\/span><span>6<\/span><span>7<\/span><span>8<\/span><span>9<\/span><span>10<\/span>\n            <\/div>\n        <\/div>\n\n        <p><strong>4. Please select your choice of preference:<\/strong><\/p>\n        <table class=\"small-font-table\">\n            <tr>\n                <td><input type=\"radio\" name=\"question4\" value=\"a\"> a. 5% chance to lose $10,000<\/td>\n            <\/tr>\n            <tr>\n                <td><input type=\"radio\" name=\"question4\" value=\"b\"> b. 100% chance to lose $501<\/td>\n            <\/tr>\n        <\/table>\n        <p><strong><b>How confident are you in your choice?<\/b><\/strong><\/p>\n        <div class=\"slider-container\">\n            <input type=\"range\" id=\"confidence4\" name=\"confidence4\" min=\"0\" max=\"10\" step=\"1\" class=\"slider\">\n            <div class=\"slider-labels\">\n                <span>0<\/span><span>1<\/span><span>2<\/span><span>3<\/span><span>4<\/span><span>5<\/span><span>6<\/span><span>7<\/span><span>8<\/span><span>9<\/span><span>10<\/span>\n            <\/div>\n        <\/div>\n\n        <button type=\"submit\" id=\"nextButton\" disabled>Next<\/button>\n<\/div>\n <div id=\"progressBarContainer\">\n    <div id=\"progressBar\"><\/div>\n<\/div>\n<div id=\"progressText\">Page 1 out of 15<\/div>\n    <div id=\"loadingSpinnerPage\"><\/div>\n    <\/form>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Task-4: Risk &#038; Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"footnotes":""},"class_list":["post-2378","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Task-4: Risk &amp; Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"beams-experiments.com -\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Task-RU-H - beams-experiments.com\" \/>\n\t\t<meta property=\"og:description\" content=\"Task-4: Risk &amp; Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-08-08T16:09:12+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-09-06T09:30:44+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Task-RU-H - beams-experiments.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Task-4: Risk &amp; Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/risk-uncertainty-task-human\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/beams-experiments.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/risk-uncertainty-task-human\\\/#listItem\",\"name\":\"Task-RU-H\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/risk-uncertainty-task-human\\\/#listItem\",\"position\":2,\"name\":\"Task-RU-H\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/beams-experiments.com#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#organization\",\"name\":\"beams-experiments.com\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/risk-uncertainty-task-human\\\/#webpage\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/risk-uncertainty-task-human\\\/\",\"name\":\"Task-RU-H - beams-experiments.com\",\"description\":\"Task-4: Risk & Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/index.php\\\/risk-uncertainty-task-human\\\/#breadcrumblist\"},\"datePublished\":\"2024-08-08T17:09:12+01:00\",\"dateModified\":\"2024-09-06T10:30:44+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#website\",\"url\":\"https:\\\/\\\/beams-experiments.com\\\/\",\"name\":\"beams-experiments.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/beams-experiments.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Task-RU-H - beams-experiments.com","description":"Task-4: Risk & Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.","canonical_url":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/beams-experiments.com#listItem","position":1,"name":"Home","item":"https:\/\/beams-experiments.com","nextItem":{"@type":"ListItem","@id":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/#listItem","name":"Task-RU-H"}},{"@type":"ListItem","@id":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/#listItem","position":2,"name":"Task-RU-H","previousItem":{"@type":"ListItem","@id":"https:\/\/beams-experiments.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/beams-experiments.com\/#organization","name":"beams-experiments.com","url":"https:\/\/beams-experiments.com\/"},{"@type":"WebPage","@id":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/#webpage","url":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/","name":"Task-RU-H - beams-experiments.com","description":"Task-4: Risk & Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/beams-experiments.com\/#website"},"breadcrumb":{"@id":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/#breadcrumblist"},"datePublished":"2024-08-08T17:09:12+01:00","dateModified":"2024-09-06T10:30:44+01:00"},{"@type":"WebSite","@id":"https:\/\/beams-experiments.com\/#website","url":"https:\/\/beams-experiments.com\/","name":"beams-experiments.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/beams-experiments.com\/#organization"}}]},"og:locale":"en_US","og:site_name":"beams-experiments.com -","og:type":"article","og:title":"Task-RU-H - beams-experiments.com","og:description":"Task-4: Risk &amp; Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a.","og:url":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/","article:published_time":"2024-08-08T16:09:12+00:00","article:modified_time":"2024-09-06T09:30:44+00:00","twitter:card":"summary_large_image","twitter:title":"Task-RU-H - beams-experiments.com","twitter:description":"Task-4: Risk &amp; Uncertainty Task In this task, we would like to understand how you make choices. Consider the following: 1. Please select your choice of preference: a. 95% chance to win $10,000 b. 100% chance to obtain $9,499 How confident are you in your choice? 012345678910 2. Please select your choice of preference: a."},"aioseo_meta_data":{"post_id":"2378","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-08-08 16:09:13","updated":"2025-06-06 20:53:33","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/beams-experiments.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tTask-RU-H\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/beams-experiments.com"},{"label":"Task-RU-H","link":"https:\/\/beams-experiments.com\/index.php\/risk-uncertainty-task-human\/"}],"_links":{"self":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/2378","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/comments?post=2378"}],"version-history":[{"count":36,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/2378\/revisions"}],"predecessor-version":[{"id":3521,"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/pages\/2378\/revisions\/3521"}],"wp:attachment":[{"href":"https:\/\/beams-experiments.com\/index.php\/wp-json\/wp\/v2\/media?parent=2378"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}