Answer:
See below
Explanation:
<u>Check One-Sample T-Interval Conditions</u>
Random Sample? √
Sample Size ≥30? √
Independent? √
Population Standard Deviation Unknown? √
<u>One-Sample T-Interval Information</u>
- Formula -->

- Sample Mean -->

- Critical Value -->
(given
degrees of freedom at a 95% confidence level) - Sample Size -->

- Sample Standard Deviation -->

<u>Problem 1</u>
The critical t-value, as mentioned previously, would be
, making the 95% confidence interval equal to 
This interval suggests that we are 95% confident that the true mean levels of lead in soil are between 381.5819 and 398.9181 parts per million (ppm), which satisfies the EPA's regulated maximum of 400 ppm.
Answer:
im not sure but kermeen looks like he has a good answer u can give him brainilest
Explanation:
Answer:
Explanation:
class Pet:
def __init__(self):
self.name = ''
self.age = 0
def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)
class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''
def main():
my_pet = Pet()
my_dog = Dog()
pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()
my_pet.name = pet_name
my_pet.age = pet_age
my_pet.print_info()
my_dog.name = dog_name
my_dog.age = dog_age
my_dog.breed = dog_breed
my_dog.print_info()
print(' Breed:', my_dog.breed)
main()