Question
Question 1 You have been asked to consider a random variable X that has 4 possible outcomes. Those outcomes are X ={1,2,3,4}. Modify H3_Q1.java to
Question 1 You have been asked to consider a random variable X that has 4 possible outcomes. Those outcomes are X ={1,2,3,4}. Modify H3_Q1.java to accomplish the following tasks. a.
package studentWork; import java.util.Scanner; public class H3_Q1 { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); //variables storing 4 outcomes entered by user double outcome1; double outcome2; double outcome3; double outcome4;
Addcodethatpromptstheuserfortheprobabilityassociatedwitheachofthe4outcomes(e.g. P(X = x)) and reads the values into the variables provided. b. Determine whether each individual probability given by the user in (a) is valid. For each invalid P(x), print P(x) must be between 0 and 1 on a newline. c. Determine if the 4 values entered collectively satisfy the requirements of a probability distribution. If they do not, print The sum of the individual outcome probabilities must sum to 1 on a newline.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started