R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

x  <-  seq(0,10,0.5)

x
##  [1]  0.0  0.5  1.0  1.5  2.0  2.5  3.0  3.5  4.0  4.5  5.0  5.5  6.0  6.5  7.0
## [16]  7.5  8.0  8.5  9.0  9.5 10.0
y <-  x^2  

y
##  [1]   0.00   0.25   1.00   2.25   4.00   6.25   9.00  12.25  16.00  20.25
## [11]  25.00  30.25  36.00  42.25  49.00  56.25  64.00  72.25  81.00  90.25
## [21] 100.00
plot(x,y)

\(y = x^2\)

\(y = \frac {a}{b^2}\)

\(Abs = \epsilon \cdot b \cdot c\)

\[Abs = \epsilon \cdot b \cdot c\]