Question: Can somebody have me the code of following: Language: Java You have been asked to consider a random variable X that has 4 possible outcomes.
Can somebody have me the code of following:
Language: Java
You have been asked to consider a random variable X that has 4 possible outcomes. Those outcomes areX = {1, 2, 3, 4}. Modify H3_Q1.java to accomplish the following tasks.
-
Add code that prompts the user for the probability associated with each of the 4 outcomes (e.g. P (X =x)) and reads the values into the variables provided.
-
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.
-
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.
Package SluuenlLWOT, import java.util.Scanner; public class H3_Q1 { public static void main(String[] args) { Scanner schr = new Scanner(System.in); //variables storing 4 outcomes entered by user double outcomel ; double outcome2 ; double outcome3 ; double outcome4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
