Biostatistics Student Seminar An Introduction To L A T E X

Size: px
Start display at page:

Download "Biostatistics Student Seminar An Introduction To L A T E X"

Transcription

1 Biostatistics Student Seminar An Introduction To L A T E X Josh Murray Osvaldo Espin-Garcia (edition) Dalla Lana School of Public Health University of Toronto

2 Introduction There are four stages to creating a document: 1 Text is entered and stored in the computer for corrections, extensions, deletions, etc... 2 The input text is formatted into lines of equal length and pages of a certain size 3 The output text is displayed on the computer screen 4 The final output is sent to a printer T E X, is a powerful computer programming language that focuses on step 2 above. L A T E X, is an extension that allows the user to create publication quality materials with T E Xcommands.

3 History Computer scientist Donald Knuth was frustrated with the errors that occurred when he sent his journal articles and books to be published. In 1978 wrote the typesetting program T E X so that anyone could create publication quality documents. In 1985 mathematician Leslie Lamport created an extension of T E X, called L A T E X, that focuses on document structure as opposed to the minute detail of T E X.

4 How do you use L A T E X? There are three steps to creating a publication quality document with L A T E X: 1 Enter text with L A T E X markup into a text editor and save it as a.tex file. (e.g. TeXworks, Tinn-R, TexnicCenter) 2 Send your.tex file to a program that can process L A T E X input. (MikTeX). This will create a file of your choice, PDF, DVI, or Postscript. 3 Open the file you created in a viewer (Adobe).

5 A Basic Document Every L A T E Xdocument must contain the following three components. \documentclass{article} %preamble \begin{document} %body Hello World! %body \end{document} The preamble. It tells L A T E X what kind of document to process. In the example above I chose article, but I could have chosen something else (e.g book, report, letter, or beamer). This is where you put all of the global commands that will appear in your document. The document s text is placed between the second and third item.

6 Sections L A T E X is very useful for breaking up your document into sections. Giving your document structure by adding logical sections makes it easier to read. A well structured document usually contains the following components: A title page A table of contents An Abstract Section headings Subsection headings Bibliography

7 Sections (cont d) A section can be declared in one of two ways: \section{section name} \section*{section name} Once you declare a section it is best to give it a label. This is done by adding the command \label{label name}. Once you have done this, you can reference your section by adding the command \ref{label name}.

8 Math Mode There are two main modes for processing commands in Latex. 1 Paragraph mode, which is the normal processing mode. 2 Math mode. Latex enters this mode when certain commands are encountered, telling Latex that what follows is a formula. When Latex is in math mode, spaces and blanks are ignored.

9 Math Mode (cont d) There are two ways to enter math mode. The first is within a paragraph by enclosing your math symbol or formula between two $ s. An example would be: The short hand symbol for summation is the capital Greek letter sigma, $\Sigma$. The short hand symbol for summation is the capital Greek letter sigma, Σ.

10 Math Mode (cont d) The second method way to enter math math is to place your formula between two $$ s. This will place your formula in a paragraph of its own: $$ f(x)=\frac{1} { \sqrt{2\ pi\sigma^{2} } } e ^{-\frac{(x-\mu) ^{2}}{2\sigma^{2}}} $$ f (x) = 1 (x µ)2 e 2σ 2 2πσ 2

11 Constants and Variables In Math Mode constants are typeset in Roman and variables are in italics. Spaces are ignored. z = 2a + 3y y = c{f [y, y(x)] + g(x)} M(s) < M(t) < M = m

12 Exponents and Indices \pi^{2} π 2 x^{5y + 3} x 5y+3 x_i x i a_{12} a 12 x^n_i x n i A_{i,j,k}^{n!2}?? A x 2 i j 2n m.n

13 Fractions Fractions can be displayed as x/y x/y \frac{x}{y} x y Both, \frac{x/y - z/y}{u/v -s/t}?? a x y + b x+y 1+ a b a+b

14 Roots Roots can be displayed as \sqrt{8} 8 \sqrt[3]{8}=2 3 8 = 2 \sqrt{x^2 + y^2 +2xy} x 2 + y 2 + 2xy \sqrt[3]{-q + \sqrt{q^2 +p^3}}?? SE( ˆ ) = 1 n n n n 22

15 Sums and Integrals Summation and integration formulas are made with the commands \sum and \int: n i=1 b a n a x x=1 2 n b a i f i (x)g i (x) dx4 i=1 a More complex equations can be made by following the simple rules. \int\frac{\sqrt{(ax+b)^3}}{x} produces: (ax + b) 3 x

16 Arrays Arrays are used to create matrices, determinants, systems of equations and so on. An array begins with the command \begin{array}{justification} and ends with \end{array}. The justification consists of entering l for left, c for center, or r for right. You need to include a justification rule for every column that you include. The entries in each array are separated by an & and each line ends with \\.

17 Examples of arrays $$ \ l e f t ( \ begin { array } { r c l } 1 & 0 & 0 \ \ 0 & 1 & 0 \ \ 0& 0 & 1 \ \ \ end { array } \ r i g h t ) $$ $$ \ l e f t ( \ begin { array } { c } \ l e f t \ begin { array } { c c } x _{11} & x _{12} \ \ x _{21} & x _{22} \ end { array } \ r i g h t \ \ x \ \ y \ end { array } \ r i g h t ) $$ x 11 x 12 x 21 x 22 x y

18 What code produces the following? F(x, y) = 0 and F xx F xy F x F yx F yy F y F x F y 0 = 0

19 Multiple Line Equations Equation deployed over several lines of code. They have the same form as an array. \begin{eqnarray} (x+y)(x-y) & = & x^2 - xy - y^2 \\ & = & x^2 - y^2 \\ (x+y)^2 & = & x^2 + 2xy + y^2 \end{eqnarray} x n u x n+t 1 u t = x n u 1 + (ax n + c)u 2 + ( ) + a t 1 x n + c(a t ) = (u 1 + au a t 1 u t )x n + h(u 1,..., u t ) u t

20 Tables Tables are created in Latex using the tabular environment. The basic syntax for a table in Latex is: \begin{tabular}{justification} r1c1 & r1c2 &... \\... \\ rnc1 & rnc2 &... \end{tabular} The justification is either l for left, c for center, or r for right. Each column entry is separated by an & and each row ends with \.

21 Example of a table The following code: \ begin { t a b l e } \ begin { t a b u l a r } { c c c c } \ hline \ hline B i r t h & \ multicolumn { 2 } { c } { Smoking Status } & \ \ \ cline {2 3} Weight & No & Yes & T o t a l \ \ \ hline Normal & $n_{11}$ & $n_{12}$ & $n _ { 1. } $ \ \ \ hline Low & $n_{21}$ & $n_{22}$ & $n _ { 2. } $ \ \ \ hline \ hline T o t a l & $n _ {. 1 } $ & $n _ {. 2 } $ & $n _ {.. } $ \ \ \ hline \ hline \ end { t a b u l a r } \ caption { $ 2 \ times2$ contingency t a b l e } \ end { t a b l e }

22 Example of a table (cont d) Produces the table: Birth Smoking Status Weight No Yes Total Normal n 11 n 12 n 1. Low n 21 n 22 n 2. Total n.1 n.2 n.. Table: 2 2 contingency table

23 Table: Summary of Categorical variables Distribution of Gender Gender n (%) Females 296 (58.04%) Males 214 (41.96%) Distribution of Age Spread n (%) Age grp 1 1 (0.21%) Age grp 2 92 (19.53%) Age grp (33.76%) Age grp (46.50%)

24 Special Characters List of Special Characters: $ = \$ & = \& % = \% # = \# _ =\_ { = \{ } = \}

25 Lists There are three types of lists available in L A T E X. \begin{itemize} list text \end{itemize} \begin{enumerate} list text \end{enumerate} \begin{description} list text \end{ description} To add a new bullet/number/description you call the command \item.

26 Example itemize The individual entries are indicated with a black dot, a so-called bullet, as the label The text in the entries may be of any length. The label appears at the beginning of the first line of text. Successive entries are separated from one another by additional vertical spaces.

27 Example of enumerate 1 The labels consists of sequential numbers 2 the numbering starts at 1 with every call to the enumerate environment

28 Sample description purpose This environment is appropriate when a number of words or expressions are to be defined example A keyword is used as the label and the entry contains a clarification or explanation other uses It may also be used as an author list in a bibliography

29 Online resources lshort/english/ 4

Joy Allen. March 12, 2015

Joy Allen. March 12, 2015 LATEX Newcastle University March 12, 2015 Why use L A TEX? Extremely useful tool for writing scientific papers, presentations and PhD Thesis which are heavily laden with mathematics You get lovely pretty

More information

PHYS Exercise: Typeset this by changing the default bullet symbol twice.

PHYS Exercise: Typeset this by changing the default bullet symbol twice. PHYS 87 Exercises (January 3, 09):. Exercise: Typeset this by changing the default bullet symbol twice. > The first entry here > Then the second > etc The first entry here Then the second etc Hint: Use

More information

Introduction to Beamer

Introduction to Beamer T.Dultuya Department of Applied Mathematics School of Engineering and Applied Sciences National University of Mongolia April 1, 2015 Contents 1 2 Section, subsection Table of contents Frames 3 Contents

More information

PHYS 87. Check that it works by typesetting the tripple ensted list of the pervious exercise.

PHYS 87. Check that it works by typesetting the tripple ensted list of the pervious exercise. PHYS 87 Exercises (February 7, 2018): 1. Exercise: try typesetting this It doe snot work with beamer > The first entry here > Then the second > etc The first entry here Then the second etc Hint: Use \textgreater

More information

LaTeX in a nutshell. Master on Libre Software Miguel Vidal. September 24, GSyC/Libresoft URJC

LaTeX in a nutshell. Master on Libre Software Miguel Vidal. September 24, GSyC/Libresoft URJC Master on Libre Software 2010 mvidal@gsyc.urjc.es GSyC/Libresoft URJC September 24, 2010 (cc) 2010. Some rights reserved. This work is licensed under a Creative Commons Attribution-Share Alike 3.0 License,

More information

How to make a presentation with L A TEX?

How to make a presentation with L A TEX? How to make a presentation with L A TEX? Department of computer science King Saud University November 23, 2015 1 / 49 Contents 1 to L A TEX 2 2 / 49 to L A TEX L A TEX( pronounced /"la:tex/, /"la:tek/,

More information

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells

Introduction. How to use this book. Linear algebra. Mathematica. Mathematica cells Introduction How to use this book This guide is meant as a standard reference to definitions, examples, and Mathematica techniques for linear algebra. Complementary material can be found in the Help sections

More information

L A TEXtutorial. The very basics for typesetting research papers. Dr. Robin Roche. February 23, 2018

L A TEXtutorial. The very basics for typesetting research papers. Dr. Robin Roche. February 23, 2018 L A TEXtutorial The very basics for typesetting research papers Dr. Robin Roche February 23, 2018 Dr. Robin Roche LATEXtutorial February 23, 2018 1 / 11 What is L A TEX? L A TEX(pronounced latek ) is a

More information

LESSON 1 of 3 (IJMPA)

LESSON 1 of 3 (IJMPA) LESSON 1 of 3 (IJMPA) Compile for International Journal of Modern Physics A (World Scientific) FOR TYPING JOURNAL PAPERS (NOT APPROPRIATE FOR BOOKS) (1) Open up the zip file. It contains (A) a graphic

More information

1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2. e E

1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2. e E PHYS 87 Exercises (May, 08):. Typeset a = b c = d e = f g = b h = d k = f. Typeset a = b + c 3. Typeset two of these:,,,, @ 4. Typeset F = G N m m r 5. Typeset n ± (E, T ) = = e E k B T ± e ω/k BT ± Note:

More information

What is Beamer?! Introduction to Beamer Beamer is a LaTeX class for creating slides for presentations. Commands for Header and the Title Page

What is Beamer?! Introduction to Beamer Beamer is a LaTeX class for creating slides for presentations. Commands for Header and the Title Page Introduction to Beamer Beamer is a LaTeX class for creating slides for presentations Steven G. Wicker Winston Salem, NC wickersg@wfu.edu Updated October, 2011 What is Beamer?! Beamer is a LaTeX class for

More information

Pronounced Lay Tech Getting Started In LAT E X. Brian David Sittinger

Pronounced Lay Tech Getting Started In LAT E X. Brian David Sittinger Pronounced Lay Tech Getting Started In LAT E X Brian David Sittinger 3 March 2010 1 Outline: Starting materials. Text in LAT E X. Math formulae in LAT E X. Resources. 2 (1) Starting Materials. An editor

More information

Title of the Book. A. U. Thor XYZ University

Title of the Book. A. U. Thor XYZ University Title of the Book A. U. Thor XYZ University ii Copyright c1997 by Author Preface Preface Head This is the preface and it is created using a TeX field in a paragraph by itself. When the document is loaded,

More information

PHYS 87. Don t expect to go through all of these today. Will continue next week. 1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2.

PHYS 87. Don t expect to go through all of these today. Will continue next week. 1. Typeset a = b c = d e = f g = b h = d k = f. m 1 m 2 r 2. Exercises (May 7, 07): PHYS 87 Don t expect to go through all of these today. Will continue next week.. Typeset a = b c = d e = f g = b h = d k = f. Typeset a = b + c 3. Typeset two of these:,,, 4. Typeset

More information

Latex Review Beamer: Presentations and Posters Citations & References. L A TEXWorkshop. Mai Ha Vu. University of Delaware.

Latex Review Beamer: Presentations and Posters Citations & References. L A TEXWorkshop. Mai Ha Vu. University of Delaware. L A TEXWorkshop Mai Ha Vu University of Delaware February 10, 2016 1 / 22 Table of Contents Latex Review Beamer: Presentations and Posters Citations & References 2 / 22 Getting started 1. L A TEXdistribution

More information

Adding and Subtracting Terms

Adding and Subtracting Terms Adding and Subtracting Terms 1.6 OBJECTIVES 1.6 1. Identify terms and like terms 2. Combine like terms 3. Add algebraic expressions 4. Subtract algebraic expressions To find the perimeter of (or the distance

More information

Corrections and Minor Revisions of Mathematical Methods in the Physical Sciences, third edition, by Mary L. Boas (deceased)

Corrections and Minor Revisions of Mathematical Methods in the Physical Sciences, third edition, by Mary L. Boas (deceased) Corrections and Minor Revisions of Mathematical Methods in the Physical Sciences, third edition, by Mary L. Boas (deceased) Updated December 6, 2017 by Harold P. Boas This list includes all errors known

More information

CZECHOSLOVAK JOURNAL OF PHYSICS. Instructions for authors

CZECHOSLOVAK JOURNAL OF PHYSICS. Instructions for authors CZECHOSLOVAK JOURNAL OF PHYSICS Instructions for authors The Czechoslovak Journal of Physics is published monthly. It comprises original contributions, both regular papers and letters, as well as review

More information

MATLAB AND L A TEX EXAMPLES

MATLAB AND L A TEX EXAMPLES MATLAB AND L A TEX EXAMPLES ERNIE AND RYAN UNIVERSITY OF WASHINGTON Abstract. This seems as good a place as any for an abstract. Our goal is to present some examples that may facilitate the use of LATEX

More information

ADVICE ON MATHEMATICAL WRITING

ADVICE ON MATHEMATICAL WRITING ADVICE ON MATHEMATICAL WRITING KEITH CONRAD This handout lists some writing tips when you are preparing a mathematical text. The idea of using examples labeled Bad and then Good was inspired by this format

More information

An example SEG expanded abstract Joe Dellinger, BP and Sergey Fomel, University of Texas at Austin

An example SEG expanded abstract Joe Dellinger, BP and Sergey Fomel, University of Texas at Austin An example SEG expanded abstract Joe Dellinger, BP and Sergey Fomel, University of Texas at Austin SUMMARY This is an example of using segabs.cls for writing SEG expanded abstracts. INTRODUCTION This is

More information

MA 580; Numerical Analysis I

MA 580; Numerical Analysis I MA 580; Numerical Analysis I C. T. Kelley NC State University tim kelley@ncsu.edu Version of October 23, 2016 NCSU, Fall 2016 c C. T. Kelley, I. C. F. Ipsen, 2016 MA 580, Fall 2016 1 / 43 Contents 1 Introduction

More information

Math 308 Midterm Answers and Comments July 18, Part A. Short answer questions

Math 308 Midterm Answers and Comments July 18, Part A. Short answer questions Math 308 Midterm Answers and Comments July 18, 2011 Part A. Short answer questions (1) Compute the determinant of the matrix a 3 3 1 1 2. 1 a 3 The determinant is 2a 2 12. Comments: Everyone seemed to

More information

Submitted to Econometrica A SAMPLE DOCUMENT 1

Submitted to Econometrica A SAMPLE DOCUMENT 1 Submitted to Econometrica A SAMPLE DOCUMENT 1 First Author 2,3,, Second Author 4 and and Third Author The abstract should summarize the contents of the paper. It should be clear, descriptive, self-explanatory

More information

Relationships Between Quantities

Relationships Between Quantities Algebra 1 Relationships Between Quantities Relationships Between Quantities Everyone loves math until there are letters (known as variables) in problems!! Do students complain about reading when they come

More information

Introduction to Beamer

Introduction to Beamer Introduction to Beamer Beamer is a LaTeX class for creating slides for presentations Steven Wicker Winston Salem, NC wickersg@wfu.edu June 16, 2009 How to Get Beamer Go to http://latex-beamer.sourceforge.net/

More information

LESSON 25: LAGRANGE MULTIPLIERS OCTOBER 30, 2017

LESSON 25: LAGRANGE MULTIPLIERS OCTOBER 30, 2017 LESSON 5: LAGRANGE MULTIPLIERS OCTOBER 30, 017 Lagrange multipliers is another method of finding minima and maxima of functions of more than one variable. In fact, many of the problems from the last homework

More information

Lecture 1 : Basic Statistical Measures

Lecture 1 : Basic Statistical Measures Lecture 1 : Basic Statistical Measures Jonathan Marchini October 11, 2004 In this lecture we will learn about different types of data encountered in practice different ways of plotting data to explore

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Objective: Students will gain familiarity with using Excel to record data, display data properly, use built-in formulae to do calculations, and plot and fit data with linear functions.

More information

MATH.2720 Introduction to Programming with MATLAB Vector and Matrix Algebra

MATH.2720 Introduction to Programming with MATLAB Vector and Matrix Algebra MATH.2720 Introduction to Programming with MATLAB Vector and Matrix Algebra A. Vectors A vector is a quantity that has both magnitude and direction, like velocity. The location of a vector is irrelevant;

More information

Section-A. Short Questions

Section-A. Short Questions Section-A Short Questions Question1: Define Problem? : A Problem is defined as a cultural artifact, which is especially visible in a society s economic and industrial decision making process. Those managers

More information

Standard Format for Importing Questions

Standard Format for Importing Questions Standard Format for Importing Questions Respondus will import multiple choice, true-false, essay, fill in the blank, and multiple answer questions. The text (.txt) file must be organized in a Standard

More information

Elementary Statistics for Geographers, 3 rd Edition

Elementary Statistics for Geographers, 3 rd Edition Errata Elementary Statistics for Geographers, 3 rd Edition Chapter 1 p. 31: 1 st paragraph: 1 st line: 20 should be 22 Chapter 2 p. 41: Example 2-1: 1 st paragraph: last line: Chapters 2, 3, and 4 and

More information

Theory of Computation

Theory of Computation Theory of Computation Lecture #2 Sarmad Abbasi Virtual University Sarmad Abbasi (Virtual University) Theory of Computation 1 / 1 Lecture 2: Overview Recall some basic definitions from Automata Theory.

More information

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2

A (Mostly) Correctly Formatted Sample Lab Report. Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 A (Mostly) Correctly Formatted Sample Lab Report Brett A. McGuire Lab Partner: Microsoft Windows Section AB2 August 26, 2008 Abstract Your abstract should not be indented and be single-spaced. Abstracts

More information

Required Elements (Multiple Choice) Each question must begin with a question number, followed by either a period. or a parentheses ).

Required Elements (Multiple Choice) Each question must begin with a question number, followed by either a period. or a parentheses ). The Standard Format for Importing Respondus will import multiple choice, true-false, paragraph, short answer, matching, and multiple response questions. The plain text, rich-text, or MS Word file must

More information

QUADRATIC PROGRAMMING?

QUADRATIC PROGRAMMING? QUADRATIC PROGRAMMING? WILLIAM Y. SIT Department of Mathematics, The City College of The City University of New York, New York, NY 10031, USA E-mail: wyscc@cunyvm.cuny.edu This is a talk on how to program

More information

Companion. Jeffrey E. Jones

Companion. Jeffrey E. Jones MATLAB7 Companion 1O11OO1O1O1OOOO1O1OO1111O1O1OO 1O1O1OO1OO1O11OOO1O111O1O1O1O1 O11O1O1O11O1O1O1O1OO1O11O1O1O1 O1O1O1111O11O1O1OO1O1O1O1OOOOO O1111O1O1O1O1O1O1OO1OO1OO1OOO1 O1O11111O1O1O1O1O Jeffrey E.

More information

The Title of a Standard LaTeX Report

The Title of a Standard LaTeX Report The Title of a Standard LaTeX Report Dr. Roland Author The Date Contents I The First Part 2 1 Sample Mathematics and Text 3 1.1 In-line and Displayed Mathematics................. 3 1.2 Mathematics in Section

More information

Module 03 Lecture 14 Inferential Statistics ANOVA and TOI

Module 03 Lecture 14 Inferential Statistics ANOVA and TOI Introduction of Data Analytics Prof. Nandan Sudarsanam and Prof. B Ravindran Department of Management Studies and Department of Computer Science and Engineering Indian Institute of Technology, Madras Module

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 53L Fall 2008 Test I Rebecca A. Simmons & Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have neither provided

More information

LAT E X Math Mode. RSI 2007 Staff

LAT E X Math Mode. RSI 2007 Staff LAT E X Math Mode RSI 2007 Staff Contents Math Mode.......................................... 1 Types of Math Mode.................................... 2 Using Math Mode......................................

More information

Passing-Bablok Regression for Method Comparison

Passing-Bablok Regression for Method Comparison Chapter 313 Passing-Bablok Regression for Method Comparison Introduction Passing-Bablok regression for method comparison is a robust, nonparametric method for fitting a straight line to two-dimensional

More information

LAT E X Math Mode. RSI 2006 Staff

LAT E X Math Mode. RSI 2006 Staff LAT E X Math Mode RSI 2006 Staff Contents Math Mode.......................................... 1 Types of Math Mode.................................... 2 Using Math Mode......................................

More information

2D Plotting with Matlab

2D Plotting with Matlab GEEN 1300 Introduction to Engineering Computing Class Meeting #22 Monday, Nov. 9 th Engineering Computing and Problem Solving with Matlab 2-D plotting with Matlab Script files User-defined functions Matlab

More information

Algebra. Mathematics Help Sheet. The University of Sydney Business School

Algebra. Mathematics Help Sheet. The University of Sydney Business School Algebra Mathematics Help Sheet The University of Sydney Business School Introduction Terminology and Definitions Integer Constant Variable Co-efficient A whole number, as opposed to a fraction or a decimal,

More information

Calculus Volume 1 Release Notes 2018

Calculus Volume 1 Release Notes 2018 Calculus Volume 1 Release Notes 2018 Publish Date: March 16, 2018 Revision Number: C1-2016-003(03/18)-MJ Page Count Difference: In the latest edition of Calculus Volume 1, there are 873 pages compared

More information

Correction for Ascertainment

Correction for Ascertainment Correction for Ascertainment Michael C. Neale International Workshop on Methodology for Genetic Studies of Twins and Families Boulder CO 2004 Virginia Institute for Psychiatric and Behavioral Genetics

More information

2.3 Terminology for Systems of Linear Equations

2.3 Terminology for Systems of Linear Equations page 133 e 2t sin 2t 44 A(t) = t 2 5 te t, a = 0, b = 1 sec 2 t 3t sin t 45 The matrix function A(t) in Problem 39, with a = 0 and b = 1 Integration of matrix functions given in the text was done with

More information

Required Elements (Multiple Choice) Each question must begin with a question number, followed by either a period "." or a parentheses ")".

Required Elements (Multiple Choice) Each question must begin with a question number, followed by either a period . or a parentheses ). Page 1 of 7 Standard Format for Importing Questions Respondus will import multiple choice, true-false, essay, fill in the blank, and multiple answer questions. The plain text, rich-text, or MS Word file

More information

New Mexico Tech Hyd 510

New Mexico Tech Hyd 510 Vectors vector - has magnitude and direction (e.g. velocity, specific discharge, hydraulic gradient) scalar - has magnitude only (e.g. porosity, specific yield, storage coefficient) unit vector - a unit

More information

Solving Equations by Adding and Subtracting

Solving Equations by Adding and Subtracting SECTION 2.1 Solving Equations by Adding and Subtracting 2.1 OBJECTIVES 1. Determine whether a given number is a solution for an equation 2. Use the addition property to solve equations 3. Determine whether

More information

Green s Functions Computation

Green s Functions Computation Green s Functions Computation User s manual Alberto Cabada Fernández (USC) José Ángel Cid Araújo (UVIGO) Beatriz Máquez Villamarín (USC) Universidade de Santiago de Compostela Universidade de Vigo 1 1.

More information

Standard Format for Importing Questions

Standard Format for Importing Questions Standard Format for Importing Questions Respondus will import multiple choice, true-false, essay, fill in the blank, and multiple answer questions. The plain text, rich-text, or MS Word file must be organized

More information

Mathematical Notation

Mathematical Notation Mathematical Notation All material 1996, 1997, 1999, 2000, 2105 David Maier Todd Leen 2001, 2006 1 Mathematics Core rules apply here, too Organize to help the reader Be simple Use a consistent lexical

More information

DIMACS Book Series Sample

DIMACS Book Series Sample DIMACS Series in Discrete Mathematics and Theoretical Computer Science DIMACS Book Series Sample Author One and Author Two This paper is dedicated to our advisors. Abstract. This paper is a sample prepared

More information

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement

Experiment 0 ~ Introduction to Statistics and Excel Tutorial. Introduction to Statistics, Error and Measurement Experiment 0 ~ Introduction to Statistics and Excel Tutorial Many of you already went through the introduction to laboratory practice and excel tutorial in Physics 1011. For that reason, we aren t going

More information

Flip Your Grade Book With Concept-Based Grading CMC 3 South Presentation, Pomona, California, 2016 March 05

Flip Your Grade Book With Concept-Based Grading CMC 3 South Presentation, Pomona, California, 2016 March 05 Flip Your Grade Book With Concept-Based Grading CMC South Presentation, Pomona, California, 016 March 05 Phil Alexander Smith, American River College (smithp@arc.losrios.edu) Additional Resources and Information

More information

A supplementary reader

A supplementary reader A supplementary reader for CASIO fx-991ms/fx-570ms/fx-115ms/fx-100ms fx-95ms/fx-82ms/fx-350ms/fx-85ms SA0204-010002B Printed in Japan Worldwide Education Web http://world.casio.com/edu_e/ About this book...

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

CSCI 239 Discrete Structures of Computer Science Lab 6 Vectors and Matrices

CSCI 239 Discrete Structures of Computer Science Lab 6 Vectors and Matrices CSCI 239 Discrete Structures of Computer Science Lab 6 Vectors and Matrices This lab consists of exercises on real-valued vectors and matrices. Most of the exercises will required pencil and paper. Put

More information

The Title of a Sample SW Report 1

The Title of a Sample SW Report 1 The Title of a Sample SW Report 1 A.U. Thor The Date Abstract We study the e ects of warm water on the local penguin population. The major nding is that it is extremely di cult to induce penguins to drink

More information

UNIVERSITY OF MASSACHUSETTS Department of Biostatistics and Epidemiology BioEpi 540W - Introduction to Biostatistics Fall 2004

UNIVERSITY OF MASSACHUSETTS Department of Biostatistics and Epidemiology BioEpi 540W - Introduction to Biostatistics Fall 2004 UNIVERSITY OF MASSACHUSETTS Department of Biostatistics and Epidemiology BioEpi 50W - Introduction to Biostatistics Fall 00 Exercises with Solutions Topic Summarizing Data Due: Monday September 7, 00 READINGS.

More information

Algebra 2 and Algebra 2 Honors Corrections. Blue Cover

Algebra 2 and Algebra 2 Honors Corrections. Blue Cover Algebra and Algebra Honors Corrections (Blue Cover) Please note: The 005 edition of Algebra includes extra practice sheets. Your Teacher Manual and Student Text should have the same color cover. If you

More information

Chemical reaction networks and diffusion

Chemical reaction networks and diffusion FYTN05 Fall 2012 Computer Assignment 2 Chemical reaction networks and diffusion Supervisor: Erica Manesso (Office: K217, Phone: +46 46 22 29232, E-mail: erica.manesso@thep.lu.se) Deadline: October 23,

More information

LAB 1: MATLAB - Introduction to Programming. Objective:

LAB 1: MATLAB - Introduction to Programming. Objective: LAB 1: MATLAB - Introduction to Programming Objective: The objective of this laboratory is to review how to use MATLAB as a programming tool and to review a classic analytical solution to a steady-state

More information

An Introduction to L A T E X

An Introduction to L A T E X An Introduction to L A T E X or Why Word Sucks MS012A Research Papers Ethics Tools Preamble Running LAT E X WYSIWYG What You See Is What You Get Include programs like Word, OpenOffice, FrameMaker etc.

More information

The Standard Format for Importing

The Standard Format for Importing The Standard Format for Importing (Works best if saved in.txt format to make sure all formatting is removed) Respondus will import Multiple Choice, True False, Essay, Fill-In-The-Blank, and Multiple Select

More information

Errata List Numerical Mathematics and Computing, 7th Edition Ward Cheney & David Kincaid Cengage Learning (c) March 2013

Errata List Numerical Mathematics and Computing, 7th Edition Ward Cheney & David Kincaid Cengage Learning (c) March 2013 Chapter Errata List Numerical Mathematics and Computing, 7th Edition Ward Cheney & David Kincaid Cengage Learning (c) 202 9 March 203 Page 4, Summary, 2nd bullet item, line 4: Change A segment of to The

More information

Creating Questions in Word Importing Exporting Respondus 4.0. Importing Respondus 4.0 Formatting Questions

Creating Questions in Word Importing Exporting Respondus 4.0. Importing Respondus 4.0 Formatting Questions 1 Respondus Creating Questions in Word Importing Exporting Respondus 4.0 Importing Respondus 4.0 Formatting Questions Creating the Questions in Word 1. Each question must be numbered and the answers must

More information

Notation, Matrices, and Matrix Mathematics

Notation, Matrices, and Matrix Mathematics Geographic Information Analysis, Second Edition. David O Sullivan and David J. Unwin. 010 John Wiley & Sons, Inc. Published 010 by John Wiley & Sons, Inc. Appendix A Notation, Matrices, and Matrix Mathematics

More information

RESPONDUS: The Standard Format for Importing

RESPONDUS: The Standard Format for Importing Respondus will import multiple choice, true-false, essay, fill in the blank, and multiple answer questions. The plain text, rich-text, or MS Word file must be organized in a Standard Format before it can

More information

Matrix Operations and Equations

Matrix Operations and Equations C H A P T ER Matrix Operations and Equations 200 Carnegie Learning, Inc. Shoe stores stock various sizes and widths of each style to accommodate buyers with different shaped feet. You will use matrix operations

More information

Sections 6.1 and 6.2: Systems of Linear Equations

Sections 6.1 and 6.2: Systems of Linear Equations What is a linear equation? Sections 6.1 and 6.2: Systems of Linear Equations We are now going to discuss solving systems of two or more linear equations with two variables. Recall that solving an equation

More information

Using the kbordermatrix package

Using the kbordermatrix package Using the kbordermatrix package K Border kcb@caltechedu January 6, 00 Rev July, 0 The kbordermatrix package provides the \kbordermatrix command, which can be used to make displays such as this, taken from

More information

1 Probability Distributions

1 Probability Distributions 1 Probability Distributions In the chapter about descriptive statistics sample data were discussed, and tools introduced for describing the samples with numbers as well as with graphs. In this chapter

More information

SYMBOL EXPLANATION EXAMPLE

SYMBOL EXPLANATION EXAMPLE MATH 4310 PRELIM I REVIEW Notation These are the symbols we have used in class, leading up to Prelim I, and which I will use on the exam SYMBOL EXPLANATION EXAMPLE {a, b, c, } The is the way to write the

More information

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from Lecture 44 Solution of Non-Linear Equations Regula-Falsi Method Method of iteration Newton - Raphson Method Muller s Method Graeffe s Root Squaring Method Newton -Raphson Method An approximation to the

More information

Objectives. Materials

Objectives. Materials Activity 8 Exploring Infinite Series Objectives Identify a geometric series Determine convergence and sum of geometric series Identify a series that satisfies the alternating series test Use a graphing

More information

Chapter 2. Review of Mathematics. 2.1 Exponents

Chapter 2. Review of Mathematics. 2.1 Exponents Chapter 2 Review of Mathematics In this chapter, we will briefly review some of the mathematical concepts used in this textbook. Knowing these concepts will make it much easier to understand the mathematical

More information

DA 2: Linear Approximation

DA 2: Linear Approximation Differentiation Applications 2: Linear Approximation 159 DA 2: Linear Approximation Model 1: Sleepy Road Trip You are on a road trip with your family and have been traveling for nearly two hours on small

More information

E23: Hotel Management System Wen Yunlu Hu Xing Chen Ke Tang Haoyuan Module: EEE 101

E23: Hotel Management System Wen Yunlu Hu Xing Chen Ke Tang Haoyuan Module: EEE 101 E23: Hotel Management System Author: 1302509 Zhao Ruimin 1301478 Wen Yunlu 1302575 Hu Xing 1301911 Chen Ke 1302599 Tang Haoyuan Module: EEE 101 Lecturer: Date: Dr.Lin December/22/2014 Contents Contents

More information

Irrational Thoughts. Aim. Equipment. Irrational Investigation: Teacher Notes

Irrational Thoughts. Aim. Equipment. Irrational Investigation: Teacher Notes Teacher Notes 7 8 9 10 11 12 Aim Identify strategies and techniques to express irrational numbers in surd form. Equipment For this activity you will need: TI-Nspire CAS TI-Nspire CAS Investigation Student

More information

A Guide to Presentations in L A TEX-beamer. Trinity University

A Guide to Presentations in L A TEX-beamer. Trinity University A Guide to Presentations in L A TEX-beamer with a detour to Geometric Analysis Eduardo Trinity University Mathematics Department Major Seminar, Fall 2008 Outline 1 Intro to a Presentation Outline 1 Intro

More information

PRACTICAL SUGGESTIONS FOR MATHEMATICAL WRITING

PRACTICAL SUGGESTIONS FOR MATHEMATICAL WRITING PRACTICAL SUGGESTIONS FOR MATHEMATICAL WRITING BJORN POONEN In the examples below, red is bad and green is good. 1. Important things (1) If a claim does not follow immediately from the previous sentence

More information

Supplementary Material for MTH 299 Online Edition

Supplementary Material for MTH 299 Online Edition Supplementary Material for MTH 299 Online Edition Abstract This document contains supplementary material, such as definitions, explanations, examples, etc., to complement that of the text, How to Think

More information

Mathematics 1104B. Systems of Equations and Inequalities, and Matrices. Study Guide. Text: Mathematics 11. Alexander and Kelly; Addison-Wesley, 1998.

Mathematics 1104B. Systems of Equations and Inequalities, and Matrices. Study Guide. Text: Mathematics 11. Alexander and Kelly; Addison-Wesley, 1998. Adult Basic Education Mathematics Systems of Equations and Inequalities, and Matrices Prerequisites: Mathematics 1104A, Mathematics 1104B Credit Value: 1 Text: Mathematics 11. Alexander and Kelly; Addison-Wesley,

More information

Natural Language Processing Prof. Pawan Goyal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Natural Language Processing Prof. Pawan Goyal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Natural Language Processing Prof. Pawan Goyal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 18 Maximum Entropy Models I Welcome back for the 3rd module

More information

Math 220 Some Exam 1 Practice Problems Fall 2017

Math 220 Some Exam 1 Practice Problems Fall 2017 Math Some Exam Practice Problems Fall 7 Note that this is not a sample exam. This is much longer than your exam will be. However, the ideas and question types represented here (along with your homework)

More information

Topic: The Standard Format for Importing

Topic: The Standard Format for Importing Office of Online & Extended Learning Respondus Faculty Help Topic: The Standard Format for Importing Respondus will import the following question types: Multiple choice True or False Essay (long answer)

More information

Mathematical Nomenclature

Mathematical Nomenclature Mathematical Nomenclature Miloslav Čapek Department of Electromagnetic Field Czech Technical University in Prague, Czech Republic miloslav.capek@fel.cvut.cz Prague, Czech Republic November 6, 2018 Čapek,

More information

1 Introduction. Multimedia, Vision and Graphics Laboratory

1 Introduction. Multimedia, Vision and Graphics Laboratory Multimedia, Vision and Graphics Laboratory Rumelifeneri Yolu, Sarıyer, 34450, İstanbul / Turkey date: September 3, 2017 to: Engin Erzin from: M. A. Tuğtekin Turan subject: On the Use of MVGL Report Template

More information

Green s Functions with Reflection

Green s Functions with Reflection Green s Functions with Reflection User s manual Alberto Cabada Fernández (USC) José Ángel Cid Araújo (UVIGO) Fernando Adrián Fernández Tojo (USC) Beatriz Máquez Villamarín (USC) Universidade de Santiago

More information

Conceptual Explanations: Simultaneous Equations Distance, rate, and time

Conceptual Explanations: Simultaneous Equations Distance, rate, and time Conceptual Explanations: Simultaneous Equations Distance, rate, and time If you travel 30 miles per hour for 4 hours, how far do you go? A little common sense will tell you that the answer is 120 miles.

More information

A simple san serif article

A simple san serif article A simple san serif article A. U. Thor 1 Sample Mathematics and Text This short sample document illustrates the typeset appearance of in-line and displayed mathematics in documents. It also illustrates

More information

The Standard Format for Importing Quizzes

The Standard Format for Importing Quizzes The Standard Format for Importing Quizzes Respondus will import multiple choice, true or false, essay, fill in blank (short answer), and multiple response questions. (In this documentation the terms short

More information

Roberto s Notes on Linear Algebra Chapter 11: Vector spaces Section 1. Vector space axioms

Roberto s Notes on Linear Algebra Chapter 11: Vector spaces Section 1. Vector space axioms Roberto s Notes on Linear Algebra Chapter 11: Vector spaces Section 1 Vector space axioms What you need to know already: How Euclidean vectors work. What linear combinations are and why they are important.

More information

Pre-Calculus I. For example, the system. x y 2 z. may be represented by the augmented matrix

Pre-Calculus I. For example, the system. x y 2 z. may be represented by the augmented matrix Pre-Calculus I 8.1 Matrix Solutions to Linear Systems A matrix is a rectangular array of elements. o An array is a systematic arrangement of numbers or symbols in rows and columns. Matrices (the plural

More information

Import a Word quiz Doc. To Respondus

Import a Word quiz Doc. To Respondus Import a Word quiz Doc. To Respondus Standard Format for Importing Questions Respondus will import multiple choice, true-false, paragraph, short answer, matching, and multiple response questions. The plain

More information

hp calculators HP 35s Using Register Arithmetic Variables and Memory Registers Practice Examples: Calculating Using STO Arithmetic

hp calculators HP 35s Using Register Arithmetic Variables and Memory Registers Practice Examples: Calculating Using STO Arithmetic Variables and Memory Registers Practice Examples: Calculating Using STO Arithmetic Calculating Using RCL Arithmetic in RPN mode Storage Arithmetic in a Program Variables and Memory Registers The purpose

More information