Skip to content

Commit

Permalink
add prml/01_introduction.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Shengzhe Yao committed Aug 20, 2013
1 parent 2e241da commit 7330a07
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions clrs/14_augmenting_data_structures.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## Exercises
### 14.1-3
19 changes: 19 additions & 0 deletions prml/01_introduction.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Exercises
### 1.1
\begin{align*}
&\sum_{j=0}^M A_{ij}w_j &=& T_i \\
&\sum_{j=0}^M \sum_{n=1}^N (x_n)^{i+j} w_j &=& \sum_{n=1}^N(x_n)^i t_n \\
&\sum_{n=1}^N \sum_{j=0}^M (x_n)^{i+j} w_j - \sum_{n=1}^N(x_n)^i t_n &=& 0 \\
&\sum_{n=1}^N (\sum_{j=0}^M (x_n)^{i+j} w_j - (x_n)^i t_n) &=& 0 \\
&\sum_{n=1}^N ( (x_n)^i \sum_{j=0}^M (x_n)^j w_j - (x_n)^i t_n) &=& 0 \\
&\sum_{n=1}^N (x_n)^i (\sum_{j=0}^M (x_n)^j w_j - t_n) &=& 0 \\
&\sum_{n=1}^N (x_n)^i (y(x_n, \mathbf{w}) - t_n) &=& 0 \\
\end{align*}

Take derivative of
$$E(\mathbf{w}) = \frac{1}{2}\sum_{n=1}^N {y(x_n, \mathbf{w}) - t_n}^2$$
in terms of $\mathbf{x}$, then we get
\begin{align*}
\frac{\partial E}{\partial \mathbf{x}} &=& \sum_{n=1}^N (y(x_n, \mathbf{w}) - t_n) \\
&=&
\end{align*}
5 changes: 5 additions & 0 deletions prml/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### Compile to pdf

pandoc _input.md_ -o _output_.pdf

It would seem more reasonable to choose the complexity of the model according to the complexity of the problem being solved.

0 comments on commit 7330a07

Please sign in to comment.