Skip to content

Commit

Permalink
Actualizados soluciones de ejercicios
Browse files Browse the repository at this point in the history
  • Loading branch information
joanby committed Feb 29, 2024
1 parent 39ed9ae commit 6f1c91f
Show file tree
Hide file tree
Showing 80 changed files with 2,861 additions and 973 deletions.
76 changes: 76 additions & 0 deletions ejercicios/Propuestos/Tema-4---Momentos_1.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
title: "Ejercicios Tema 4 - Complementos de Variables aleatorias"
author: "Ricardo Alberich, Juan Gabriel Gomila y Arnau Mir"
date: "Curso de Probabilidad y Variables Aleatorias con R y Python"
output:
pdf_document: default
html_document:
df_print: paged
header-includes: \usepackage{amsmath}
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

\newcommand\momento{m}
\newcommand{\momentocentral}{\mu}
\newcommand{\FunGenMom}{m}
\newcommand{\FunCar}{\phi}

# Momentos y momentos centrados. Asimetría y apuntamiento.

## Pregunta 1.

Halla el momento de orden $n$ y el momento centrado de orden $n$ para la variable aleatoria $W$ con función de distribución:
$$
F_W (t)=
\left\{\begin{array}{ll}
0, & \mbox{si $t<3$},
\\[0.1cm]
\frac13, & \mbox{si $3\leq t<4$},
\\[0.1cm]
\frac12, & \mbox{si $4\leq t<5$},
\\[0.1cm]
\frac23, & \mbox{si $5\leq t<6$},
\\[0.1cm]
1, & \mbox{si $t\geq 6$},
\end{array}\right.
$$


## Pregunta 2.

Halla el momento de orden $n$ y el momento central de orden $n$ para la variable aleatoria $Z$ con función de probabilidad:
$$f_Z (x)=
\left\{\begin{array}{ll}
{1\over 3}, & \mbox{si $x=0,1,2$},\\ 0, & \mbox{en los otros
casos.}
\end{array}\right.
$$


## Pregunta 3.

Halla el momento de orden $n$ y el momento central de orden $n$ para la variable aleatoria $X$ con función de densidad:

$$
f(x)=\begin{cases}
1-|x|, & \mbox{si }|x|\leq 1,\\
0, & \mbox{en caso contrario.}
\end{cases}
$$

## Pregunta 4.

Halla el momento de orden $n$ y el momento central de orden $n$ para la variable aleatoria $Y$ con función de distribución:

$$
F_Y(t)=
\left\{\begin{array}{ll}
0, & \mbox{si $t<0$},\\
\sqrt{t}, & \mbox{si $0\leq t\leq 1$},\\ 1, &
\mbox{si $t>1$},
\end{array}\right.
$$

Loading

0 comments on commit 6f1c91f

Please sign in to comment.