Probability & Statistics
Instructor. Motoya Machida, Tennessee Technological University. (E-mail: mmachida@tntech.edu)Description of probability course topics. We begin with the basic concepts of probability, such as events, random variables, independence, and conditional probability. Having developed these concepts, the remainder of the course concentrates on the methods of calculation in probability and their applications through exercises. The topics treated here are divided into the five major parts:
- probabilistic models;
- random variables;
- discrete distributions;
- continuous distributions;
- joint distributions.
| Lecture contents | lecture note | presentation | quiz/test solutions | r source |
| Course structure and policies | syllabus_4470.pdf
syllabus_5470.pdf |
|||
| Probabilistic models | note01.pdf | slides01.pdf
Simulation and Exact Probability Monty Hall Problem |
quiz01-2026.pdf | inspect.r |
| Random variables | note02.pdf | slides02.pdf | ||
| Discrete distributions | note03.pdf | slides03.pdf | ||
| Continuous distributions | note04.pdf
chisquare.pdf normal.pdf |
slides04.pdf | chisquare.r
normal.r |
|
| Joint distributions | note05.pdf | slides05.pdf |
Description of statistics course topics. We continue topics of probability course, and integrate them with the treatise of mathematical statistics. We begin with further exploration of probability: (I) sampling distributions and (II) limiting distributions. Then we develop the core concepts of (III) statistical inference, covering the topics of theory of point estimation and hypothesis testing. The investigation of probability and statistics culminates in understanding of (IV) maximum-likelihood methods and their properties.
| Lecture contents | lecture note | presentation | quiz/test solutions | r source |
| Sampling distributions | note06.pdf
chisquare.pdf ttable.pdf ftable.pdf |
tdemo.R
fdemo.R |
||
| Limiting distributions | note07.pdf | clt.R
cc.R |
||
| Statistical inference | note08.pdf | Testing a Proportion
Comparison of Two Proportions Goodness of Fit with Mendelian inheritance |
pvalue.R
candyweight.R with candyweight.txt carpanel.R with carpanel.txt |
|
| Maximum-likelihood methods | note09.pdf |
R code. R is free software/platform for statistical computing and graphics, and R code is made available for you to run it in your own machine. R can be installed on Windows, Linux, and Mac, and downloaded from CRAN R project. Each “command” is executed in an interactive manner, known as “interpretor,” and is requested in a form of “function.” For example,
> x <- c(3,1,2)is the instruction to create an array x which contains the values of 3,1,2.
R source files. R functions are prepared as external source files (usually with extension ".r" or ".R"), and must be sourced in R in advance with the command
> source("[script filename]")
Or, call it by
> source(file.choose())and choose a source file interactively.
Working directory. Your external source files must be found in the working directory and recognized by R. You can always change the working directory from R via [File]->[Change dir...]. Alternatively you can set the working directory by
> setwd("[pathname]")
R Studio. On top of R you may want to use R Studio. It is an integrated development environment (IDE) for R. Follow their instruction to download and install DESKTOP R STUDIO in your PC.
© TTU Mathematics