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}373839%% ADDED PREAMBLE40\usepackage{todonotes}41\usepackage[displaymath, mathlines]{lineno}42\usepackage{hyperref}43\usepackage{pagecolor}44\usepackage{tabularx}4546\newcommand{\sg}[1]{\todo[color=red!40,fancyline]{#1}}47\newcommand{\good}[1]{\todo[color=blue!40,fancyline]{#1}}48\newcommand{\comm}[1]{\todo[color=orange!40,fancyline]{#1}}49%%505152\begin{document}5354%% ADDED FEEDBACK55\pagecolor{yellow!30!white}56\mbox{\LARGE Drugs }\hfill NAME5758\vspace{1cm}5960\hrule6162\vspace{1cm}6364Grade:6566\vspace{1cm}6768\begin{tabularx}{15cm}{ |p{6cm} | p{8cm}|}69\hline70Approriate Introduction &7172\\73\hline74Explanation of prednisone &7576\\77\hline78Biological half-life &7980\\81\hline82Answers to 1, 2, 3, and 4 &8384\\85\hline86Proper formatting &8788\\89\hline90\end{tabularx}9192\newpage9394\listoftodos[List of Comments]9596\newpage9798\maketitle99100\linenumbers101\pagecolor{white}102%%103104\begin{fullwidth}105\mbox{\LARGE PreCalculus BC: Project Four - \today }\hfill106\end{fullwidth}107\section*{Introduction}108Many real-world processes happen in stages. When a population is growing,109each new generation represents a new stage of population growth. Compound110interest is another example, where interest is paid in stages and creates111a new account balance. Many things that change continuously are more easily112measured in discrete stages. Temperature, which is a continuous quantity,113can be measured with regular intervals producing a list of temperatures114such as 67, 63, 58, 55, and so on. Although the temperature is changing115continuously, we actually only care about the discrete steps from one116measurement point to the next.117118Recursive sequences can be used to model this types of situations. In some119cases, we can get an explicit formula for a sequence from the recursion120relation that defines it be finding a pattern in the terms of a sequence.121122\section*{Recursive Sequences as Models}123Suppose you deposit some money in an account that pays 6\% interest compounded124monthly. The bank has a definite rule for paying interest. At the end of each125month the bank adds to your account $\frac{1}{2}$\% (or 0.005) of the amount126in your account at that time. As an equation, we have:127128$$129\text{amount at end of month} = \text{amount at end of last month}130+ 0.005 (\text{amount at end of last month})131$$132133We can convert this into a more expressive formula, by realizing that if we134let $A_0$ be the amount of the original deposit, $A_1$ is the amount at the end135of the first month, $A_2$ is the amount at the end of the second month, and so136on. $A_n$ represents the amount at the end of $n$ months.137138$$139A_n = 1.005A_{n-1}140$$141142We recognize this as a recursively defined sequence since it gives us the amount143at each stage in terms of the amount at the preceding stage.144145\section*{Daily Drug Dose - Preliminary Work not included in your report}146In this project, you will construct a recursive model for the amount of a drug147that is present in a patient's bloodstream. There are two important things148to consider. First, the amount of drug in a patient's bloodstream must be above149a certain threshold level for the drug to be effective. Second, the amount must150not exceed some maximum level beyond which the drug would do damage to the patient151in some way, such as side effects of perhaps death.152153Consider first a patient who takes a 50-mg pill of a certain drug every morning.154It is known that the body eliminates 40\% of the drug every 24 hours. Find155a recursive sequence that models the amount $A_n$ of the drug in the patient's156body after each pill is taken. List out at least the first four terms of the157sequence $A_n$. Find a formula for $A_n$. How much of the drug remains in the patient's158body after 5 days? How much will accumulate in his system after prolonged use?159160\section*{Prednisone}161Prednisone is often prescribed for acute asthma attacks and suppresses162the immune system. For 5 mg tablets, typical instructions are: ``Take 8163tablets the first day, 7 the second, and decrease by one tablet each day until164all tablets are gone.'' Prednisone decays exponentially in the body. This165looks like regular exponential decay that we have studied previously. However,166in a medical context we will develop the idea of biological half-life. The167biological half-life of a substance is the time it takes for the substance to168lose half of its pharmacologic activity. The Wikipedia page for biological169half-life provides some additional detail, if you're interested. For170prednisone, the biological half-life is one hour.171172Let $x(t)$ represent the amount of prednisone (in mg) in the body at time $t$.173174\begin{enumerate}175\item Write formulas involving $x$, for the amount of prednisone in the body:176\begin{enumerate}177\item 24 hours after taking the first dose (of 8 tablets), right before taking the second dose (of 7 tablets).178\item Immediately after taking the second dose (of 7 tablets).179\item Immediately after taking the third dose (of 6 tablets).180\item Immediately after taking the eighth dose (of 1 tablet).181\item 24 hours after taking the eighth dose.182\item $n$ days after taking the eighth dose.183\end{enumerate}184\item If a patient takes all the prednisone tablets as prescribed, how many185days after taking the eighth dose is there less than 3\% of a prednisone186tablet in the patient's body?187\item A patient is prescribed $n$ tablets of prednisone the first day, $n-1$188the second, and one tablet fewer each day until all the tablets are gone. Write189a formula that represents $T_n$, the number of prednisone tablets in the body190immediately after taking the final dose.191\item If a patient accidently takes all the prednisone tablets at once,192what percentage of a prednisone tablet will be present in the patient's body?193How long will it take for there to be less than 3\% of a prednisone tablet194in the patient's body?195\end{enumerate}196197\section*{What I will be looking for in your report}198199\begin{itemize}200\item Your report includes a proper introduction that explains to the reader201that you will be investigating how drugs are processed in the body.202\item Your report gives a brief explanation of prednisone and how it is used.203\item Your report describes biological half-life and its importance in204studying how drugs are processed by the human body.205\item You have answered and discussed questions 1, 2, 3, and 4 as they206appear in this project description. This should not appear as simply a list207of answers, but instead should take on a more natural paragraph form where208you walk the reader through the development of your answers.209\item Strictly speaking, this report does not require any graphs, but when210explaining how the concentration of prednisone changes over time, a graph can211be very useful. If you decide to use a graph, it must appear in a figure212environment with appropriate caption, label, and references from the text.213\item Properly-formatted LaTeX style, as we have discussed in class. One214of the items I will check for here is that any variables or equations are215wrapped in dollar signs so that they appear typeset correctly.216\item Please remember that your report's filename should follow the convention217of being in all lower-case, no spaces, and should contain your last name218followed by \verb|_drug.tex|.219\end{itemize}220221\end{document}222223224225