The library records the number of books checked out by each person over the course of one day, with the following result:
|
Number of books checked out |
Probabilities |
|
0 |
20% |
|
1 |
45% |
|
2 |
20% |
|
3 |
10% |
|
4 |
5% |
State the random variable
Draw a histogram of the number of booked checked out by each patron over the course of one day
Find the mean, variance, and standard deviation
What is the probability that a patron will check out at least one book?
What is the probability will take out no more than three books?
Is it unusual for a patron to check out more than three books? Why?
Let X is a random variable shows the number of booked checked out by each patron over the course of one day. Following table shows the probability distribution of X:
| Number of books checked out, X | Probabilities, P(X=x) |
| 0 | 0.2 |
| 1 | 0.45 |
| 2 | 0.2 |
| 3 | 0.1 |
| 4 | 0.05 |
| Total | 1 |
Following is the histogram:

Following table shows the calculations:
| Number of books checked out, X | Probabilities, P(X=x) | xP(X=x) | x^2*P(X=x) |
| 0 | 0.2 | 0 | 0 |
| 1 | 0.45 | 0.45 | 0.45 |
| 2 | 0.2 | 0.4 | 0.8 |
| 3 | 0.1 | 0.3 | 0.9 |
| 4 | 0.05 | 0.2 | 0.8 |
| Total | 1 | 1.35 | 2.95 |
So,
------------------
The probability that a patron will check out at least one book is
The probability will take out no more than three books is
The probability will take out more than three books is
P(X >3) = P(X=4) = 0.05
Since above probability is not less than 0.05 so it is not unusual for a patron to check out more than three books.
The library records the number of books checked out by each person over the course of...
In this assignment you will implement software for your local library. The user of the software will be the librarian, who uses your program to issue library cards, check books out to patrons, check books back in, send out overdue notices, and open and close the library. class Calendar We need to deal with the passage of time, so we need to keep track of Java. Declare this variable as private int date within the class itself, not within any...
In this project, you will construct an Object-Oriented framework for a library system. The library must have books, and it must have patrons. The patrons can check books out and check them back in. Patrons can have at most 3 books checked out at any given time, and can only check out at most one copy of a given book. Books are due to be checked back in by the fourth day after checking them out. For every 5 days...
Draw a activity diagram for Use Case: Check Out Books Primary Actor: Worker Stakeholders and Interests: Worker: wants fast, and easy check out to books. Patron: wants fast checkout, and does not want to be charged for books they did not checkout. Library: wants fast checkout of books, and wants to make sure that all books that leave the library have been checked out. Wants to allocate books fairly. Government: wants to protect investment in books and keep costs down....
This case is a simplified (initial draft) of a new system for the University Library. Of course, the library system must keep track of books. Information is maintained about both book titles and the individual book copies. Book titles maintain information about title, author, publisher, and catalog number. Individual copies maintain copy number, edition, publication year, ISBN, book status (whether it is on the shelf or loaned out), and date due back in. The library also keeps track of patrons...
The CIS Department at Tiny College maintains the Free Access to
Current Technology (FACT) library of e- books. FACT is a collection
of current technology e-books for use by faculty and students.
Agreements with the publishers allow patrons to electronically
check out a book, which gives them exclusive access to the book
online through the FACT website, but only one patron at a time can
have access to a book. A book must have at least one author but can...
Subject: Java Program You are writing a simple library checkout system to be used by a librarian. You will need the following classes: Patron - A patron has a first and last name, can borrow a book, return a book, and keeps track of the books they currently have checked out (an array or ArrayList of books). The first and last names can be updated and retrieved. However, a patron can only have up to 3 books checked out at...
A library checks out an average of 387 books per day with a standard deviation of 70 books. The number of books checked out follows an unknown distribution. Consider a random sample of 106 days of operation. Let ¯¯¯ X = X ¯ = the average number of books checked out per day over a selection of 106 days. ¯¯¯ X ˜ X ¯ ~ ( , )
ERD Diagram Based solely on the description of library operations below (without making up any additional facts/requirements) design a data model that avoids update anomalies. You can use text to describe your model if you want. If so be clear as to what columns have primary and foreign keys, as well as what table a FK refers to. You can sketch it out on paper and scan it. You can use Visio. You can use some other tool if you...
) Suppose that you want to estimate the total number of library books checked out by students on campus. Propose a method of sampling that might reasonably (and feasibly) accomplish this goal. Explain the pros and cons of your method.
Hello I'm working on a java program, called library which takes two previous classes I've made "Book" and Author. Library creates a place where books can be stored and checked in and out. Im having trouble in my Library class with the method getStatus not working after I check a book in or out. I will copy and paste a portion of my library code on here, I have a link for the code for the book author as well...