Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Join our Q&A platform and connect with professionals ready to provide precise answers to your questions in various areas. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.
Sagot :
Let me use Python to find the answers
Program.
[tex]\tt import\:statistics \:as\:stats[/tex]
[tex]\tt Prices=[75,120,120,145,150,150,150,175,175,200,225,275][/tex]
[tex]\tt print(stats.mean(Prices))[/tex]
[tex]\tt print(stats.median(Prices))[/tex]
[tex]\tt print(stats.mode(Prices))[/tex]
Output:;
- Mean=163.333
- Median=150.0
- Mode=150
Console attached
Answer:
- See below
Step-by-step explanation:
Given prices:
- $75, $120, $120, $145, $150, $150, $150, $175, $175, $200, $225, $275
a) Find the mean:
- (75 + 2*120 + 145 + 3*150+ 2*175 + 200 + 225 + 275)/12 = $163.33
b) Find the median
- The both middle numbers are $150, so it is the median
c) Find the mode:
- The most repeated price is $150 (3 times repeated)
d) Find the range:
- $275 - $75 = $200
Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. We hope our answers were useful. Return anytime for more information and answers to any other questions you have. Westonci.ca is committed to providing accurate answers. Come back soon for more trustworthy information.