TU Wien:Statistik und Wahrscheinlichkeitstheorie UE (Levajkovic)/Übungen 2023W/HW04.1

Aus VoWi
Zur Navigation springen Zur Suche springen
Miraculin

Miraculin is a protein naturally produced in a rare tropical fruit. It can convert a sour taste into a sweet taste. Consequently, miraculin has the potential to be an alternative low-calorie sweetener. A group of Japanese environmental scientists investigated the ability of a hybrid tomato plant to produce miraculin. For a particular generation of the tomato plant, the amount of miraculin produced (measured in micrograms per gram of fresh weight) had a mean 105.3 and a standard deviation of 8.0. Assume that is normally distributed. Use the table of the cdf of the standard normal distribution to compute

(a)

(b)

(c) the interquartile range of the miraculin production.

Note: The interquartile range is the difference betwen the upper and

the lower quartile of , i.e. .

Dieses Beispiel ist als solved markiert. Ist dies falsch oder ungenau? Aktualisiere den Lösungsstatus (Details: Vorlage:Beispiel)


Lösungsvorschlag von Lessi[Bearbeiten | Quelltext bearbeiten]

--Lessi 2024-02-07T13:04:11Z

Let be the amount of Miraculin for a generation of plants. Then . To standardize this random variable, we define

a)[Bearbeiten | Quelltext bearbeiten]

We want the probability o f :

z110 <- (110 - 105.3) / 8
print(z110)

z100 <- (100 - 105.3) / 8
print(z100)

So by taking a look at the table we get

# just to confirm: 
pnorm(z110) - pnorm(z100)

b)[Bearbeiten | Quelltext bearbeiten]

Basically the same as before:

z120 <- (120 - 105.3) / 8
print(z120)

Which means that

# confirm again:
pnorm(z120, lower.tail = FALSE)

c)[Bearbeiten | Quelltext bearbeiten]

First we compute the lower and upper quartile for the standard normal distribution:

To get and , we transform :