Question

In: Statistics and Probability

if I have two lists: A = {132.65, 327.86, 0.08, 1059.22, 5.29, 0.0, 454.04, 0.0, 193.67,...

if I have two lists:

A = {132.65, 327.86, 0.08, 1059.22, 5.29, 0.0, 454.04, 0.0, 193.67, 940.54}

B = {28.31, 0.0, 0.0, 6.71, 2336.61, 0.0, 90.17, 6.4, 244.29, 87.38}

I want to test if the variance of B is greater than A, how should I test it?

what is my Null and Alternative Hypothesis? what test should I run? and what is the result? do I reject my null and why?

Solutions

Expert Solution

Null Hypothesis:

Ho:

Ha:

alpha=0.05

Rcode:

A <- c(132.65, 327.86, 0.08, 1059.22, 5.29, 0.0, 454.04, 0.0, 193.67, 940.54)

B <- c(28.31, 0.0, 0.0, 6.71, 2336.61, 0.0, 90.17, 6.4, 244.29, 87.38)

var.test(B,A,alternative = "greater")

Output:

F test to compare two variances

data: B and A
F = 3.3798, num df = 9, denom df = 9, p-value = 0.04204
alternative hypothesis: true ratio of variances is greater than 1
95 percent confidence interval:
1.063201 Inf
sample estimates:
ratio of variances
3.379801

Intrepretation:

F test statisitc,F=3.3798

p value=0.04204

alpha=0.05

pvalues les than alpha

Reject Ho as p<alpha

Accept Ho

Conclusion:

There is suffcient statistical evdience at 5% level of significance to conlcude that variance of B is greater than variance of A


Related Solutions

5.29 Catalog Age lists the top 17 U.S. firms in annual catalog sales. Dell Computer is...
5.29 Catalog Age lists the top 17 U.S. firms in annual catalog sales. Dell Computer is number one followed by IBM and W.W. Grainger. Of the 17 firms on the list, 8 are in some type of computer-related business. Suppose four firms are randomly selected. a. What is the probability that none of the firms is in some type of computer-related business? b. What is the probability that all four firms are in some type of computer-related business? c. What...
Given two lists, write python code to print “True” if the two lists have at least...
Given two lists, write python code to print “True” if the two lists have at least one common element. For example, x = [1,2,3], y=[3,4,5], then the program should print “True” since there is a common element 3.
16 Let ? have a normal distribution with ?(?) = 0.2 and ??(?) = 0.08. a....
16 Let ? have a normal distribution with ?(?) = 0.2 and ??(?) = 0.08. a. Find ?(? < 0.36) e. Find ? such that ?(? ≤ ?) = 0.05. b. Find ?(? > 0.16) f. Find ? such that ?(? ≥ ?) = 0.10. c. Find ?(? ≥ 0.60) g. Find ? such that ?(? > ?) = 0.80. d. Find 0.28 < ? ≤ 0.40) h. Find ? such that ?(? < ?) = 0.95.
In python i want to create a function. The function will take in two linked lists...
In python i want to create a function. The function will take in two linked lists as the parameters. If one is shorter than the other then the shorter will be the length. I want to take the values from both linked lists and turn them into tuples. I then want these tuples to be put into a new linked list. I want to return that linked list. I want to do this using recursion and no helper functions or...
i) Which of the following options lists two sources of cash? a)A decrease in an assets,...
i) Which of the following options lists two sources of cash? a)A decrease in an assets, and an increase in a liability b)An increase in a liability and a decrease in equity c)A decrease in an assets, and a decrease in a liability d)An increase in an assets, and a decrease in equity ii) You are measuring the impact of a printing company's decision to purchase ink from a supplier that offers a lower price. Which of the four financial...
Python Programming Problem: If I have to separate lists, one contains a large string of paragraphs...
Python Programming Problem: If I have to separate lists, one contains a large string of paragraphs of words, and one contains just words, how can i iterate the words in my second list and compare it to my paragraph list to see how many times that word has occurred? List1 = ['paragraph.......'] List2 = ['words', 'words', 'words'......] these are just minimal examples how do i approach this problem? apprently numpy helps with processing time for something like this? cuz the...
Java Linked Lists I want a simple program that reads two text files that contains an...
Java Linked Lists I want a simple program that reads two text files that contains an integers matrix and store each file into a linked lists matrix so I can later preform operations such as addition and subtraction on the matrices an example of the input text files: sample a 2 6 2 6 2 18 17 11 20 sample b 3 13 5 4 11 20 13 18 20
1.) Two securities have the following characteristics: E(Ra)= 0.06​ 0.04 E(Rb)= 0.08​ 0.10 A) Fill in...
1.) Two securities have the following characteristics: E(Ra)= 0.06​ 0.04 E(Rb)= 0.08​ 0.10 A) Fill in the missing cells in the table. For each of two correlation cases, corr. = -1 and corr. = 0, calculate the attainable portfolios' mean and standard deviation from combining the two assets together using weights in increments of 25% from 1 to 0. Also, calculate the minimum risk portfolio's weights, mean and standard deviation for each correlation case. Assume that the risk free rate...
A firm's assets have a beta of 1.0. Assuming that the debt beta equals 0.0 and...
A firm's assets have a beta of 1.0. Assuming that the debt beta equals 0.0 and that there are no taxes, calculate the firm's equity beta under the following assumptions: a. The firm's capital structure is 100% equity. b. The capital structure is 20% debt and 80% equity. c. The capital structure is 40% debt and 60% equity. d. The capital structure is 60% debt and 40% equity. e. The capital structure is 80% debt and 20% equity. Do you...
Working with Linked Lists in C++ Tasks As stated in the objectives, you have two methods...
Working with Linked Lists in C++ Tasks As stated in the objectives, you have two methods to implement. These methods (which contain TODO comments) are found in linked_list.cpp. Part 1 Implement the copy constructor; use the LinkedBag as inspiration for your solution as the technique of creating a deep copy is essentially the same. Part 2 Implement the replace method. //linked_list.cpp #include "linked_list.h" // Header file #include <cassert> template<class Object> LinkedList<Object>::LinkedList() : headPtr( nullptr ), itemCount( 0 ) { }...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT