Here we have check whether the average salaries of two sector (goverment and private) are different or not.
here population standard deviation unknown so we use t -test
=
sample mean salary of goverment sector.
=
sample mean salary of private sector.
=population
mean salary of goverment sector
=population
mean salary of private sector
=
number of observation in goverment sector
=number
of observation in private sector
hypothesis is to be tested
(average salaries of two sector are same)
against

(average
salaries of two sector are different)
Test statistic:

it follows t distribution with
degrees of freedom.
| Government(X) | Private(Y) | (X-Xbar)^2 | (Y-Ybar)^2 | |
| 540 | 474 | 208.184498 | 225 | |
| 432 | 380 | 8755.6069 | 11881 | |
| 528 | 463 | 5.89809796 | 676 | |
| 574 | 612 | 2345.3293 | 15129 | |
| 448 | 420 | 6017.3221 | 4761 | |
| 502 | 526 | 555.610898 | 1369 | |
| 480 | 430 | 2076.7525 | 3481 | |
| 499 | 459 | 706.039298 | 900 | |
| 610 | 615 | 7128.1885 | 15876 | |
| 572 | 541 | 2155.6149 | 2704 | |
| 390 | 335 | 18379.6045 | 23716 | |
| 593 | 613 | 4546.6161 | 15376 | |
| 651 | 15732.3337 | |||
| 539 | 180.327298 | |||
| Total | 7358 | 5868 | 68793.4286 | 96094 |


=72.7448
=
93.4656







therefore test statistic is,



.............
test statistic value
critical value:
=
...............from
table
decision criteria:
If t >
then reject Ho at
% level of significance.
here t <
=2.064
accept Ho at 5% level of significance.
decision using p-value:
p-value=p[t >1.0767]=0.2923
if p value <
then reject Ho
0.2923>0.05 therefore accpet Ho
Conclusion:
Average salaries of two sectors goverment and private are same.
2. Independent random samples of managers' yearly salaries (in $100) taken from governmental and private organizations...
The College Board SAT college entrance exam consists of three parts: math, writing, and critical reading. Sample data showing the math and writing scores for a sample of 12 students who took the SAT follow Student Math Writing 1 540 474 2 432 380 3 528 463 4 574 612 5 448 420 6 502 526 7 480 430 8 499 459 9 610 615 10 572 541 11 390 335 12 593 613 Use a .05 level of significance...
You may need to use the appropriate technology to answer this question. A standardized exam consists of three parts: math, writing, and critical reading. Sample data showing the math and writing scores for a sample of 12 students who took the exam follow. Student Math Writing 1 540 474 2 432 380 3 528 463 4 574 612 5 448 414 6 502 526 7 480 430 8 499 459 9 610 615 10 572 541 11 390 335 12...
A standardized exam consists of three parts: math, writing, and critical reading. Sample data showing the math and writing scores for a sample of 12 students who took the exam follow Student Math Writing 540 432 528 574 448 502 480 499 610 572 474 380 463 606 420 2 4 526 430 459 609 541 335 613 6 8 10 390 12 593 (a) Use a 0.05 level of significance and test for a difference between the population mean...
A standardized exam consists of three parts: math, writing, and critical reading. Sample data showing the math and writing scores for a sample of 12 students who took the exam follow. Student Math Writing 1 540 474 2 432 380 3 528 463 4 574 612 5 448 420 6 502 526 7 480 430 8 499 459 9 610 615 10 572 541 11 390 335 12 593 613 (a) Use a 0.05 level of significance and test for...
Exercise 10.05 Algorithmic Save Submit Assignment for Grading Question 2 of 14 Check My Work eBook The average expenditure on Valentine's Day was expected to be $100.89 (USA Today, February 13, 2006). Do male and female consumers differ in the amounts they spend? The average expenditure in a sample survey of 46 male consumers was $136.59, and the average expenditure in a sample survey of 32 female consumers was $69.13. Based on past surveys, the standard deviation for male consumers...
Implement a method that uses insertion sort to sort numbers. Use the numbers provided in files (100.txt, 1000.txt, 5000.txt, 50000.txt, 100000.txt and 500000.txt) as input. Measure the time taken to sort these numbers (do not include the file IO time). Plot the time taken to sort the numbers [Programming, 35 points] .Files to submit. A report that briefly talks about your solution to each of the problem (the explanation should not exceed more than half pages each). Seperate file for...
need help to complete this java program // add appropriate import statements here. // These imports you can leave as is. import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.canvas.Canvas; import javafx.scene.canvas.GraphicsContext; import javafx.scene.paint.Color; import javafx.stage.Stage; /** @author yourAccountNameHere */ public class ConnectTheDots extends Application { /* * Do not add code to main(). Add it below in connectTheDots instead. */ public static void main(String[] args) { launch(args); } /*...
Create a program that will use the attached input file and perform the following operations. Read the file into an appropriate JCF data structure. Look up a (list of) names and numbers matching a last name or the first letters of a last name, ignoring case. Look up a (list of) names and numbers matching a number or the first digits of a number. Add a name and number to the list. Sort the list by first name, last name...