Carson Witt
%%%%%%1%2% PROJECT 43%4% filename: p4_drugs.tex5% last modified: 2017-2-16%7%%%%%%%8%9%10%%%%%%%1112\documentclass13[justified,nohyper]14{tufte-handout}1516\usepackage{amsmath}1718\usepackage{booktabs}19\usepackage{graphicx}20\usepackage{kmath,kerkis} % The order of the packages matters; kmath changes the default text font21\usepackage[T1]{fontenc}2223\usepackage{enumitem}242526% USEFUL SHORTCUTS FOR MATH27\newcommand{\ds}{\displaystyle}2829\newcommand{\dt}[1]{\dfrac{d#1}{dt}}3031\newcommand{\lp}{\left(}32\newcommand{\rp}{\right)}33\newcommand{\lb}{\left[}34\newcommand{\rb}{\right]}3536\newcommand{\evalat}{\biggr\rvert}3738\begin{document}39\begin{fullwidth}40\mbox{\LARGE PreCalculus BC: Project Four - \today }\hfill41\end{fullwidth}42\section*{Introduction}43Many real-world processes happen in stages. When a population is growing,44each new generation represents a new stage of population growth. Compound45interest is another example, where interest is paid in stages and creates46a new account balance. Many things that change continuously are more easily47measured in discrete stages. Temperature, which is a continuous quantity,48can be measured with regular intervals producing a list of temperatures49such as 67, 63, 58, 55, and so on. Although the temperature is changing50continuously, we actually only care about the discrete steps from one51measurement point to the next.5253Recursive sequences can be used to model this types of situations. In some54cases, we can get an explicit formula for a sequence from the recursion55relation that defines it be finding a pattern in the terms of a sequence.5657\section*{Recursive Sequences as Models}58Suppose you deposit some money in an account that pays 6\% interest compounded59monthly. The bank has a definite rule for paying interest. At the end of each60month the bank adds to your account $\frac{1}{2}$\% (or 0.005) of the amount61in your account at that time. As an equation, we have:6263$$64\text{amount at end of month} = \text{amount at end of last month}65+ 0.005 (\text{amount at end of last month})66$$6768We can convert this into a more expressive formula, by realizing that if we69let $A_0$ be the amount of the original deposit, $A_1$ is the amount at the end70of the first month, $A_2$ is the amount at the end of the second month, and so71on. $A_n$ represents the amount at the end of $n$ months.7273$$74A_n = 1.005A_{n-1}75$$7677We recognize this as a recursively defined sequence since it gives us the amount78at each stage in terms of the amount at the preceding stage.7980\section*{Daily Drug Dose - Preliminary Work not included in your report}81In this project, you will construct a recursive model for the amount of a drug82that is present in a patient's bloodstream. There are two important things83to consider. First, the amount of drug in a patient's bloodstream must be above84a certain threshold level for the drug to be effective. Second, the amount must85not exceed some maximum level beyond which the drug would do damage to the patient86in some way, such as side effects of perhaps death.8788Consider first a patient who takes a 50-mg pill of a certain drug every morning.89It is known that the body eliminates 40\% of the drug every 24 hours. Find90a recursive sequence that models the amount $A_n$ of the drug in the patient's91body after each pill is taken. List out at least the first four terms of the92sequence $A_n$. Find a formula for $A_n$. How much of the drug remains in the patient's93body after 5 days? How much will accumulate in his system after prolonged use?9495\section*{Prednisone}96Prednisone is often prescribed for acute asthma attacks and suppresses97the immune system. For 5 mg tablets, typical instructions are: ``Take 898tablets the first day, 7 the second, and decrease by one tablet each day until99all tablets are gone.'' Prednisone decays exponentially in the body. This100looks like regular exponential decay that we have studied previously. However,101in a medical context we will develop the idea of biological half-life. The102biological half-life of a substance is the time it takes for the substance to103lose half of its pharmacologic activity. The Wikipedia page for biological104half-life provides some additional detail, if you're interested. For105prednisone, the biological half-life is one hour.106107Let $x(t)$ represent the amount of prednisone (in mg) in the body at time $t$.108109\begin{enumerate}110\item Write formulas involving $x$, for the amount of prednisone in the body:111\begin{enumerate}112\item 24 hours after taking the first dose (of 8 tablets), right before taking the second dose (of 7 tablets).113\item Immediately after taking the second dose (of 7 tablets).114\item Immediately after taking the third dose (of 6 tablets).115\item Immediately after taking the eighth dose (of 1 tablet).116\item 24 hours after taking the eighth dose.117\item $n$ days after taking the eighth dose.118\end{enumerate}119\item If a patient takes all the prednisone tablets as prescribed, how many120days after taking the eighth dose is there less than 3\% of a prednisone121tablet in the patient's body?122\item A patient is prescribed $n$ tablets of prednisone the first day, $n-1$123the second, and one tablet fewer each day until all the tablets are gone. Write124a formula that represents $T_n$, the number of prednisone tablets in the body125immediately after taking the final dose.126\item If a patient accidently takes all the prednisone tablets at once,127what percentage of a prednisone tablet will be present in the patient's body?128How long will it take for there to be less than 3\% of a prednisone tablet129in the patient's body?130\end{enumerate}131132\section*{What I will be looking for in your report}133134\begin{itemize}135\item Your report includes a proper introduction that explains to the reader136that you will be investigating how drugs are processed in the body.137\item Your report gives a brief explanation of prednisone and how it is used.138\item Your report describes biological half-life and its importance in139studying how drugs are processed by the human body.140\item You have answered and discussed questions 1, 2, 3, and 4 as they141appear in this project description. This should not appear as simply a list142of answers, but instead should take on a more natural paragraph form where143you walk the reader through the development of your answers.144\item Strictly speaking, this report does not require any graphs, but when145explaining how the concentration of prednisone changes over time, a graph can146be very useful. If you decide to use a graph, it must appear in a figure147environment with appropriate caption, label, and references from the text.148\item Properly-formatted LaTeX style, as we have discussed in class. One149of the items I will check for here is that any variables or equations are150wrapped in dollar signs so that they appear typeset correctly.151\item Please remember that your report's filename should follow the convention152of being in all lower-case, no spaces, and should contain your last name153followed by \verb|_drug.tex|.154\end{itemize}155156\end{document}157158159160