Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Carson Witt

2061 views
1
%%%%%%
2
%
3
% PROJECT 4
4
%
5
% filename: p4_drugs.tex
6
% last modified: 2017-2-1
7
%
8
%%%%%%%
9
%
10
%
11
%%%%%%%
12
13
\documentclass
14
[justified,nohyper]
15
{tufte-handout}
16
17
\usepackage{amsmath}
18
19
\usepackage{booktabs}
20
\usepackage{graphicx}
21
\usepackage{kmath,kerkis} % The order of the packages matters; kmath changes the default text font
22
\usepackage[T1]{fontenc}
23
24
\usepackage{enumitem}
25
26
27
% USEFUL SHORTCUTS FOR MATH
28
\newcommand{\ds}{\displaystyle}
29
30
\newcommand{\dt}[1]{\dfrac{d#1}{dt}}
31
32
\newcommand{\lp}{\left(}
33
\newcommand{\rp}{\right)}
34
\newcommand{\lb}{\left[}
35
\newcommand{\rb}{\right]}
36
37
\newcommand{\evalat}{\biggr\rvert}
38
39
\begin{document}
40
\begin{fullwidth}
41
\mbox{\LARGE PreCalculus BC: Project Four - \today }\hfill
42
\end{fullwidth}
43
\section*{Introduction}
44
Many real-world processes happen in stages. When a population is growing,
45
each new generation represents a new stage of population growth. Compound
46
interest is another example, where interest is paid in stages and creates
47
a new account balance. Many things that change continuously are more easily
48
measured in discrete stages. Temperature, which is a continuous quantity,
49
can be measured with regular intervals producing a list of temperatures
50
such as 67, 63, 58, 55, and so on. Although the temperature is changing
51
continuously, we actually only care about the discrete steps from one
52
measurement point to the next.
53
54
Recursive sequences can be used to model this types of situations. In some
55
cases, we can get an explicit formula for a sequence from the recursion
56
relation that defines it be finding a pattern in the terms of a sequence.
57
58
\section*{Recursive Sequences as Models}
59
Suppose you deposit some money in an account that pays 6\% interest compounded
60
monthly. The bank has a definite rule for paying interest. At the end of each
61
month the bank adds to your account $\frac{1}{2}$\% (or 0.005) of the amount
62
in your account at that time. As an equation, we have:
63
64
$$
65
\text{amount at end of month} = \text{amount at end of last month}
66
+ 0.005 (\text{amount at end of last month})
67
$$
68
69
We can convert this into a more expressive formula, by realizing that if we
70
let $A_0$ be the amount of the original deposit, $A_1$ is the amount at the end
71
of the first month, $A_2$ is the amount at the end of the second month, and so
72
on. $A_n$ represents the amount at the end of $n$ months.
73
74
$$
75
A_n = 1.005A_{n-1}
76
$$
77
78
We recognize this as a recursively defined sequence since it gives us the amount
79
at each stage in terms of the amount at the preceding stage.
80
81
\section*{Daily Drug Dose - Preliminary Work not included in your report}
82
In this project, you will construct a recursive model for the amount of a drug
83
that is present in a patient's bloodstream. There are two important things
84
to consider. First, the amount of drug in a patient's bloodstream must be above
85
a certain threshold level for the drug to be effective. Second, the amount must
86
not exceed some maximum level beyond which the drug would do damage to the patient
87
in some way, such as side effects of perhaps death.
88
89
Consider first a patient who takes a 50-mg pill of a certain drug every morning.
90
It is known that the body eliminates 40\% of the drug every 24 hours. Find
91
a recursive sequence that models the amount $A_n$ of the drug in the patient's
92
body after each pill is taken. List out at least the first four terms of the
93
sequence $A_n$. Find a formula for $A_n$. How much of the drug remains in the patient's
94
body after 5 days? How much will accumulate in his system after prolonged use?
95
96
\section*{Prednisone}
97
Prednisone is often prescribed for acute asthma attacks and suppresses
98
the immune system. For 5 mg tablets, typical instructions are: ``Take 8
99
tablets the first day, 7 the second, and decrease by one tablet each day until
100
all tablets are gone.'' Prednisone decays exponentially in the body. This
101
looks like regular exponential decay that we have studied previously. However,
102
in a medical context we will develop the idea of biological half-life. The
103
biological half-life of a substance is the time it takes for the substance to
104
lose half of its pharmacologic activity. The Wikipedia page for biological
105
half-life provides some additional detail, if you're interested. For
106
prednisone, the biological half-life is one hour.
107
108
Let $x(t)$ represent the amount of prednisone (in mg) in the body at time $t$.
109
110
\begin{enumerate}
111
\item Write formulas involving $x$, for the amount of prednisone in the body:
112
\begin{enumerate}
113
\item 24 hours after taking the first dose (of 8 tablets), right before taking the second dose (of 7 tablets).
114
\item Immediately after taking the second dose (of 7 tablets).
115
\item Immediately after taking the third dose (of 6 tablets).
116
\item Immediately after taking the eighth dose (of 1 tablet).
117
\item 24 hours after taking the eighth dose.
118
\item $n$ days after taking the eighth dose.
119
\end{enumerate}
120
\item If a patient takes all the prednisone tablets as prescribed, how many
121
days after taking the eighth dose is there less than 3\% of a prednisone
122
tablet in the patient's body?
123
\item A patient is prescribed $n$ tablets of prednisone the first day, $n-1$
124
the second, and one tablet fewer each day until all the tablets are gone. Write
125
a formula that represents $T_n$, the number of prednisone tablets in the body
126
immediately after taking the final dose.
127
\item If a patient accidently takes all the prednisone tablets at once,
128
what percentage of a prednisone tablet will be present in the patient's body?
129
How long will it take for there to be less than 3\% of a prednisone tablet
130
in the patient's body?
131
\end{enumerate}
132
133
\section*{What I will be looking for in your report}
134
135
\begin{itemize}
136
\item Your report includes a proper introduction that explains to the reader
137
that you will be investigating how drugs are processed in the body.
138
\item Your report gives a brief explanation of prednisone and how it is used.
139
\item Your report describes biological half-life and its importance in
140
studying how drugs are processed by the human body.
141
\item You have answered and discussed questions 1, 2, 3, and 4 as they
142
appear in this project description. This should not appear as simply a list
143
of answers, but instead should take on a more natural paragraph form where
144
you walk the reader through the development of your answers.
145
\item Strictly speaking, this report does not require any graphs, but when
146
explaining how the concentration of prednisone changes over time, a graph can
147
be very useful. If you decide to use a graph, it must appear in a figure
148
environment with appropriate caption, label, and references from the text.
149
\item Properly-formatted LaTeX style, as we have discussed in class. One
150
of the items I will check for here is that any variables or equations are
151
wrapped in dollar signs so that they appear typeset correctly.
152
\item Please remember that your report's filename should follow the convention
153
of being in all lower-case, no spaces, and should contain your last name
154
followed by \verb|_drug.tex|.
155
\end{itemize}
156
157
\end{document}
158
159
160