Skip to content

Commit

Permalink
Updates Tema 11
Browse files Browse the repository at this point in the history
  • Loading branch information
emesefe committed Jan 8, 2019
1 parent d5ae01d commit 3caa82b
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 7 deletions.
Binary file added teoria/Imgs/binomprob.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 51 additions & 4 deletions teoria/Tema11.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ output:
css: JB_style.css
logo: Imgs/LogoCurso.png
fig_height: 4
fig_width: 8
fig_width: 10
---

```{r setup, include=FALSE}
Expand All @@ -22,8 +22,12 @@ knitr::opts_chunk$set(echo = TRUE, comment = NA)

## Esperanza de una variable aleatoria

<l class = "definition">Esperanza</l>

## Varianza de una variable aleatoria

<l class = "definition">Varianza</l>

## Distribuciones discretas

<l class = "definition">Distribución discreta</l>
Expand All @@ -43,16 +47,59 @@ $$X\sim \text{Be}(p)$$
donde $p$ es la probabilidad de éxito y $q = 1-p$ es la probabilidad de fracaso.

- El **dominio** de $X$ será $X(\Omega) = \{0,1\}$
- La **función de probabilidad** vendrá dada por $$f(x) = p^x(1-p)^x = \left\{
- La **función de probabilidad** vendrá dada por $$f(k) = p^k(1-p)^k = \left\{
\begin{array}{rl}
p & \text{si } x=0
\\ q & \text{si } x=1
p & \text{si } k=0
\\ q & \text{si } k=1
\\ 0 & \text{en cualquier otro caso}
\end{array}
\right.$$

## Distribución de Bernoulli

- La **función de distribución** vendrá dada por $$F(k) = \left\{
\begin{array}{rl}
0 & \text{si } k<0
\\ q & \text{si } 0\le k<1
\\ 1 & \text{si } k\ge 1
\end{array}
\right.$$
- **Esperanza** E$(X) = p$
- **Varianza** Var$(X) = pq$

## Distribución Binomial

Si $X$ es variable aleatoria que mide el "número de éxitos" y se realizan $n$ ensayos de Bernoulli independientes entre sí, diremos que $X$ se distribuye como una Binomial con parámetros $n$ y $p$

$$X\sim \text{B}(n,p)$$

donde $p$ es la probabilidad de éxito y $q = 1-p$ es la probabilidad de fracaso

- El **dominio** de $X$ será $X(\Omega) = \{0,1,2,\dots,n\}$
- La **función de probabilidad** vendrá dada por $$f(k) = {n\choose k}p^k(1-p)^{n-k} $$

## Distribución Binomial

- La **función de distribución** vendrá dada por $$F(k) = \left\{
\begin{array}{cl}
0 & \text{si } k<0
\\ \sum_{i=0}^kf(k) & \text{si } 0\le k<n
\\ 1 & \text{si } k\ge n
\end{array}
\right.$$
- **Esperanza** E$(X) = np$
- **Varianza** Var$(X) = npq$

## Distribución Binomial

```{r, echo = FALSE}
par(mfrow = c(1,2))
plot(dbinom(1:50,50,0.5),col = "purple", xlab = "", ylab = "", main = "Función de probabilidad de una B(50,0.5)")
plot(pbinom(1:50,50,0.5),col = "purple", xlab = "", ylab = "", main = "Función de distribución de una B(50,0.5)")
par(mfrow= c(1,1))
```

## Distribución Geométrica

## Distribución Hipergeométrica
Expand Down
53 changes: 50 additions & 3 deletions teoria/Tema11.html

Large diffs are not rendered by default.

0 comments on commit 3caa82b

Please sign in to comment.