Skip to content

Commit c050b1a

Browse files
committed
P6
1 parent c59d00c commit c050b1a

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

ProblemSets_PartI/Math227C_P6.tex

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
\documentclass[12pt,letterpaper]{article}
2+
\usepackage{amsmath,amsthm,amsfonts,amssymb,amscd}
3+
\usepackage{fullpage}
4+
\usepackage{lastpage}
5+
\usepackage{enumerate}
6+
\usepackage{fancyhdr}
7+
\usepackage{mathrsfs}
8+
\usepackage[margin=3cm,bottom=6cm]{geometry}
9+
\usepackage{wrapfig}
10+
\usepackage{graphicx}
11+
12+
\setlength{\parindent}{0.0in}
13+
\setlength{\parskip}{0.05in}
14+
15+
\renewcommand{\theenumi}{\bf\Alph{enumi}}
16+
17+
% Edit these as appropriate
18+
\newcommand\course{Math 227C}
19+
\newcommand\semester{Spring 2019} % <-- current semester
20+
\newcommand\hwnum{3} % <-- homework number
21+
\newcommand\yourname{Jun Allard} % <-- your name
22+
%\newcommand\login{jcarberr} % <-- your CS login
23+
24+
\newenvironment{answer}[1]{
25+
\subsubsection*{Problem \hwnum.#1}
26+
}{\newpage}
27+
28+
\pagestyle{fancyplain}
29+
\headheight 35pt
30+
\lhead{ Math 227C}
31+
\chead{\textbf{ Problem Set 6}}
32+
%\rhead{Due {\bf Friday, May 11th}}
33+
\headsep 20pt
34+
35+
\begin{document}
36+
37+
% \begin{enumerate}[A.] % uncomments for multi-problem homeworks
38+
39+
%%%%%%%%%%%%%% PROBLEM %%%%%%%%%%%%%%%%%%
40+
41+
42+
%%%%%%%%%%%%%% PROBLEM %%%%%%%%%%%%%%%%%%
43+
%\item
44+
Many processes, including the spread of an infectious disease through a small community, can be modeled as first-order exponential processes like
45+
\begin{equation*}
46+
\frac{dV}{dt} = \frac{1}{\tau}\left(R-1\right) V \quad V(0)=1 \label{eq:exponential}
47+
\end{equation*}
48+
where $V$ is the tumor volume, measured in number of cells, and $R$ is a constant.
49+
50+
This will either lead to exponential growth or exponential decay.
51+
52+
The constant $R$ is different for every patient.
53+
Assume it has Gaussian distribution with mean 1 and standard deviation $\sigma$,
54+
\begin{equation*}
55+
p_R(r) = \frac{1}{\sqrt{2\pi \sigma^2}}\, e^{-\left(r-1\right)^2/2\sigma^2}.
56+
\end{equation*}
57+
58+
\begin{enumerate}[i. ]
59+
\item Find the probability density function $p_V(v,t)$ of $V(t)$.
60+
\end{enumerate}
61+
62+
Intuitively, we expect half of the trajectories to grow exponentially, and half of the trajectories to decay exponentially.
63+
64+
\begin{enumerate}[i. ]
65+
\setcounter{enumi}{1}
66+
\item Sketch or plot the probability density you found for $p_V(v,t)$.
67+
\item What is the probability that a trajectory is above the initial condition at $V=1$? In other words, what is $\mathbb{P}(V(t)>1)$? Is it true that half the trajectories remain above the initial condition $V=1$, and half remain below the initial condition $V=1$?
68+
\item Suppose $\tau= 1$ months and $\sigma = 0.1$. What percent of patients have a tumor with more than 1000 cells after 10 months?
69+
\end{enumerate}
70+
71+
A slightly more complicated model that is a modified version of Equation~\ref{eq:exponential}, called the Gompertz model, is used to fit patient data.
72+
73+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
74+
% \end{enumerate} % uncomments for multi-problem homeworks
75+
\end{document}
76+
77+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

0 commit comments

Comments
 (0)