nlavee
BAN USER
2 Answers Combination
Suppose you are managing 16 employees, and you need to form three teams to work on different projects. Assume that all employees will work on a team, and that each employee has the same qualifications/skills so that everyone has the same probability of getting chosen. In how many different ways can the teams be chosen so that the number of employees on each project are as follows:
- nlavee December 01, 2014
8,4,4| Flag | PURGE
Returning k element in sorted order.
public static String returnElement(ArrayList<Integer> first, ArrayList<Integer> second, int k) {
String res ="";
int time = 0;
int left = 0;
int right = 0;
while(time < k) {
if(first.get(left) < second.get(right)) {
res += first.get(left) + " ";
time++;
left++;
} else if(first.get(left) > second.get(right)) {
res += second.get(right) +" ";
time++;
right++;
} else {
res += first.get(left) + " " + second.get(right) + " ";
left++;
right++;
time++;
}
}
return res;
}
While the two challenges have the same probability, we might have to take into account the independence condition in between throws. Suppose that you choose 6 shoots, after each throw, you might have a better throw and thus the independence between the shoots are violated. The player might want to choose the second option in light of this!
- nlavee November 13, 2014I would say the second challenge.
The first challenge requires you to make it 66% of the time while the second challenge only requires you to make it 63%. The drop of 3% might be significant.
Also, the condition for independence between shoot is questionable. As you try 8 times, you have more practices and might be able to make it into the basket in the subsequent throws. Therefore, the option of trying 8 times might mean better chance of winning the game.
That's what I think from my statistics perspective.
Repcinderellagale, Financial Application Engineer at Continental
Working as a Forecasting Analyst at Thorofare for more than three years. There, I am responsible for developing detailed business ...
Repkristinelavo, HR Executive freshers at Automated Traders Desk
Kristine , a Content Strategist who excels at developing and implementing social media plans, creating original online content, managing websites and ...
RepMaryGriffith, Cloud Support Associate at Auto NInja
I am Mary , have graduated with marketing specialization and I am passionate about Internet Marketing and Social Media. Creates business ...
RepNoraLillian, Applications Developer at Coupondesh
Nora, working as a ghostwriter with a history in manuscript development, proofreading, and editing, I apply with enthusiasm for this ...
Repangeljperez232, Animator at ADP
Hello,I am a Marketing Manager. And I have 2+ experience in Marketing Manager.I like to read about vashikaran ...
Repanayadonal67, Animator at ABC TECH SUPPORT
AnayaDonal and I am a City planners. I have completed all my studies from Chicago. It's been a long ...
RepNirvedPerez, abc at 8x8
To make sure a thorough investigation is done if discrepancies occur. Execute the Brand Customer Service standards to meet or ...
Repdanikademers, HTML Experienced at Barclays Capital
I am Danika , working as a junior content writer with Jafco where I use my blog writing and social media ...
RepIsabellaJones, abc at 8x8
Extensive experience of 3 years in network architecture and application requirements for corporate data and voice networks, planning, designing and ...
RepAlicaKnight, Blockchain Developer at ABC TECH SUPPORT
Alica , an Employment Consultant with extraordinary achievements in providing beneficial career consultation, organizing various workshops and webinars, and helping clients ...
Reprmansummers, Accountant at Alcatel Lucent
I'm Rman! I graduated from the University of Arizona with a Bachelor's degree in Psychology and Education. I ...
RepPrishaDavin, abc at 8x8
I promote and provide extraordinary internal external guest services, answer questions, offer information, and provide assistance in a courteous manner ...
RepLucasMoore, AT&T Customer service email at 8x8
I am creative with many years experience in the Advertising-Account Director, I have strong attention to detail and ability in ...
RepShivelyFauver, Animator at AMD
Project Management Assistant with a proven record in developing and managing project budgets, completing presentations and reports. As nowadays astrology ...
Reppedrospencerp, Blockchain Developer at 247quickbookshelp
My name is Pedro and I am a 28 years old Title abstractor . I research all documents and activities affecting ...
RepManbirTaylor, abc at 247quickbookshelp
I have strong communication skills that have been developed over a customer service career of nearly 3 years. I have ...
RepHeldaNate, Dev Lead at AMD
I am Helda , a certified Swimming Instructor capable of providing professional lessons and instructions on different swimming styles to various ...
RepDukeRollin, Java Experienced at AMD
Duke, a Qualified psychiatrist with seven years of experience effectively treating patients with a wide range of conditions with a ...
Thank you so much! Helped a lot!
- nlavee December 01, 2014