TU Wien:Statistik und Wahrscheinlichkeitstheorie UE (Levajkovic)/Übungen 2022W/HW02.5

Aus VoWi
Zur Navigation springen Zur Suche springen
Continuous random variable

Let be a random variable whose cumulative distribution function (cdf) is of the form

(a) Determine the associated probability density function (pdf) .
(b) Use R function plot() to sketch the cdf and pdf .
(c) Find an expression for the -quantile and then determine the three quartiles (25%, 50% and 75% quantiles) of the distribution.
Hint: Recall, is the p-quantile if it holds .
Dieses Beispiel hat einen unbekannten Lösungsstatus. Bitte editiere diese Seite und schreibe den dir bekannten Status ins Beispiel. Die möglichen Werte sind hier: Vorlage:Beispiel dokumentiert. Führe folgende Änderung durch:
{{Beispiel|1=
Angabetext
}}

oder

{{Beispiel|
Angabetext
}}

zu (im Falle einer korrekten, unverifizierten Lösung "solved". Auch möglich "unsolved", "wrong", "verified_by_tutor". Alle möglichen Werte sind hier: Vorlage:Beispiel dokumentiert.)

{{Beispiel|status=solved|1=
Angabetext
}}


Lösungsvorschlag von Gittenburg[Bearbeiten | Quelltext bearbeiten]

--Gittenburg 10:10, 22. Okt. 2019 (CEST)

(a)

(b)

cdf = function(x){exp(x)/(1 + exp(x))}
pdf = function(x){exp(x)/(1 + exp(x)^2)}
plot(cdf(seq(1,10,0.1)), type='l')
plot(pdf(seq(1,10,0.1)), type='l')

(c)

Note: Bei mir kommt

Es ist zwar