Just Enough L A TEX, Week 4

Size: px
Start display at page:

Download "Just Enough L A TEX, Week 4"

Transcription

1 Just Enough L A TEX, Week Department of Mathematics Michigan State University East Lansing, MI USA weil@math.msu.edu October 24, 2008

2 Typesetting Fractions The basic command to produce a fraction is \frac{numerator}{denominator} which can only be used in math mode. In a case such as $\frac{x^2}{z^e}$ the output x 2 z e can be difficult to read. To use a larger font size, the one used in display math mode, type instead $\dfrac{x^2}{z^e}$, which produces x 2 z e which is the same as in display mode, $$\frac{x^2}{z^e}$$. To produce the smaller version in display mode type $$\tfrac{x^2}{z^e}$$. Compare x 2 z e to x 2 z e.

3 Typesetting Binomial Coefficients Recall the conclusion of the Binomial Theorem. n ( ) n (b + a) n = b k a n k k k=1 The so-called binomial coefficients are produced in a fashion analogous to fractions. Specifically $\binom{m}{n}$ ( ) produces ( m ) m n while $\dbinom{m}{n}$ produces. Likewise in display ( ) n m mode $$\binom{m}{n}$$ produces and n $$\tbinom{m}{n}$$ produces ( ) m n.

4 Modular Equivalence L A TEX provides four different way to express that x and y are equivalent modulo a positive integer n; that is, y x = kn for some integer (positive or negative) k. They are presented in the following table. Typing Produces x\equiv y \mod{n} x y mod n x\equiv y \bmod{n} x y mod n x\equiv y \pmod{n} x y (mod n) x\equiv y \pod{n} x y (n)

5 Typesetting Roots Square roots are produced with the command \sqrt{expression}. For example typing $\sqrt{x^3-8}$ produces x 3 8 for math mode in line and typing $$\sqrt{x^3-8}$$ produces x 3 8 in display math mode. Note the extra space at the top of the expression. An optional argument for the command produces general roots. For example typing $\sqrt[7]{x^3-8}$ produces 7 x 3 8 for math mode in line and typing $$\sqrt[7]{x^3-8}$$ produces 7 x 3 8 in display math mode.

6 Fonts in Math Mode Standard L A TEX provides the calligraphic font in math mode (upper case only) that are produced with the command \mathcal. Some examples are A, B, C, D, E, F produced with the command $\mathcal{a, B, C, D, E, F}$. The amssymb package provides the Blackboard Bold fonts and the Fraktur fonts in math mode as well as numerous mathematical symbols. The Blackboard Bold fonts are only upper case. They are produced with the command \mathbb. For example $\mathbb{n, R, C, Z}$ produces N, R, C, Z. The Fraktur fonts, available in both upper case and lower case, are produced with the command \mathfrak; e.g., A, B, C, D, E, a, b, c is produced by $\mathfrak{a, B, C, D, a, b, c}$.

7 Stating Assertions with the amsthm Package Including \usepackage{amsthm} in the preamble permits the creation of new environments that produce assertions such as definitions, lemmas, propositions, theorems, and remarks etc. with either of two commands \newtheorem or \newtheorem*. Each has two mandatory arguments and the first has two optional ones as well. Both commands must occur in the preamble. For example the command \newtheorem{theorem}{theorem} creates an environment theorem whose heading is Theorem followed by a number identifying the theorem; 1 for the first use, 2 for the second etc. The numbers are assigned from a counter named theorem.

8 A Simple Example For example typing \begin{theorem}\label{th1} This is the first theorem. \end{theorem} \begin{theorem}\label{th2} This is the second theorem. \end{theorem} produces Theorem 1. This is the first theorem. Theorem 2. This is the second theorem.

9 A Numbering Option In the case of a long article containing numerous theorems, numbering them consecutively can become unruly. In such a situation numbering them according to section is an attractive alternative. To do so add the option [section] to the defining command. Specifically \newtheorem{theorem}{theorem}[section]. (The position of this option is important.) Assuming the theorems are being created in the fourth section the outcome would be Theorem 4.1. This is the first theorem in Section 4. Theorem 4.2. This is the second theorem in Section 4.

10 Additional Types of Assertions To include lemmas as well as theorems in the preamble type \newtheorem{lemma}{lemma}. Then typing \begin{lemma}\label{lem1} This is the first lemma. \end{lemma} produces Lemma 1. This is the first lemma. Of course this particular \newtheorem command produces a counter named lemma.

11 Numbering Consecutively with Theorems Using the option [theorem] causes lemmas to be numbered using the same counter that numbers theorems; specifically \newtheorem{lemma}[theorem]{lemma}. (Note the different location of the option.) Then what might be seen is Lemma 1. This is the first lemma. Theorem 2. This is the first theorem. Theorem 3. This is the second theorem. If theorems are numbered according to section number, the same would be true of lemmas. Additional assertions such as propositions and corollaries may also be numbered using the same counter as is used by theorem. With an optional argument in the position of this one, no new counter is created.

12 Other Styles The amsthm package also provides two additional theorem styles besides the default one already exhibited. They are definition and remark. They are changed in the preamble by typing \theoremstyle{style} before the \newtheorem command that creates the assertion type. For example typing in the preamble \theoremstyle{definition} \newtheorem{definition}{definition} \theoremstyle{remark} \newtheorem{remark}{remark} permits Definition 1. This is the first definition. Remark 1. This is the first remark.

13 Named Assertions The preamble command \newtheorem* is used to produce assertions that are named rather than numbered. This command permits only two mandatory arguments. For example the command \newtheorem*{wo}{well Ordering Principle} allows the typing of \begin{wo} Every non-empty set can be well-ordered. \end{wo} to produce Well Ordering Principle. Every non-empty set can be well-ordered.

14 An Option for All Assertion Environments All of the environments created with either of the preamble commands \newtheorem or \newtheorem* have an optional argument that can be used for inserting additional information about the assertion before its statement. For example, typing \begin{lemma}[see \cite{t}] If $f$ is differentiable at $x$, then $f$ is continuous at $x$. \end{lemma} will produce Lemma 2. (see [7]) If f is differentiable at x, then f is continuous at x. assuming that the famous text book by George Thomas is the seventh item in the bibliography and that the default method of identifying bibliographic references is used.

15 The amsthm Package s Proof Environment After stating an assertion requiring a proof, type \begin{proof}. Flush with the left margin the text Proof. is produced. If say \begin{proof}[proof of Theorem 1] it typed, then Proof of Theorem 1. is produced. At the end of the proof type \end{proof} and the end of proof symbol appears flush to the right margin. If the proof ends with a displayed formula the appears at the end of the next line. It s possible, with the command \qedhere to place the at the end of the displayed formula instead. How this is done is explained in the next frame.

16 Single Line Displayed Formulas The easiest method to produce single line, unidentified, displayed formulas is with the formula bracketed by $$ and $$. As a simple example (a+b) 3 = a 3 + 3a 2 b + 3ab 2 + b 3 is produced by typing $$ (a+b)^3=a^3+3a^2b+ab^2+b^3 $$ To number such a formula requires the amsmath package. Then type the formula inside the equation environment. That is, \begin{equation}\label{eq1} (a+b)^3= a^3+3a^2b+3ab^2+b^3 \end{equation} produces (a+b) 3 = a 3 + 3a 2 b + 3ab 2 + b 3 (1) Using equation* omits the number, but permits the use of \qedhere which effectively replaces the number with.

17 Multi-Lined Displayed Formulas with align In any multi-lined formula or expression, the different lines are separated by \\. The align environment allows the different lines to be aligned at a point selected by the user with an &. Each line is given a number. For example \begin{align} \sin(x+\frac{\pi}{2})&=\sin x\cos\frac{\pi}{2}+ \cos x\sin\frac{\pi}{2}\\ &=\cos x \end{align} produces sin(x + π 2 ) = sin x cos π 2 + cos x sin π 2 (2) = cos x (3) To eliminate the numbers, replace align with align*.

18 Multi-Lined Formula with One Number Numbering every line of a multi-lined formula is often excessive. The number at the end of any line may be eliminated with the command \notag before the \\ command. An often better alternative is to combine the equation environment with the split environment. For example typing \begin{equation}\label{eq4} \begin{split} \sin(x+\frac{\pi}{2})&=\sin x\cos\frac{\pi}{2}+ \cos x\sin\frac{\pi}{2}\\ &=\cos x \end{split} \end{equation} produces sin(x + π 2 ) = sin x cos π 2 + cos x sin π 2 = cos x (4)

19 Locating and Changing the Tags By choosing the option [tbtags] for the amsmath package the number in the preceding example is moved to the bottom of the displayed formula (and flush to the right margin), or if, in addition the option [leqno] has been selected, the number will appear at the top flush with the left margin. Equations, like assertions, may be numbered according to the section in which they appear with the preamble command \numberwithin{equation}{section} The user may override the number tags with a personal choice using the command \tag{label} or \tag*{label}. These commands are placed before the \\ command. The first results in the user s choice surrounded by parentheses while the second omits the parentheses.

20 Other Multi-Lined Environments The gather and gather* environments center all lines and, in the case of gather, numbers each line. The multline and multline* environments place the first line flush to the left margin, place the last line flush to the right margin and centers all other lines. In the case of multline a number appears after the last line aligned to the right margin unless the class option leqno has been selected in which case the number is placed before the first line flush with the left margin. The alignment character & must not appear in any line of any of these environments.

21 Two or More Columns of Equations The align and align* environments may be used to align the equations (or expressions) in two or more columns of equations (or expressions). The first & aligns the equations in the first column and the second & separates the first and second columns while the next & aligns the equations in the second column etc. For example typing \begin{align*} 6&\equiv 0\bmod{6}&7&\equiv 1\bmod{6}\\ 8&\equiv 2\bmod{6}&9&\equiv 3\bmod{6}\\ 10&\equiv 4\bmod{6}&11&\equiv 5\bmod{6} \end{align*} produces 6 0 mod mod mod mod mod mod 6

22 Alternate Numbering When the expressions are closely related as in the previous example, it s convenient to have a method of numbering them to reflect that fact. The subequations environment provides this method. To produce type 6 0 mod mod 6 (5a) 8 2 mod mod 6 (5b) 10 4 mod mod 6 (5c) \begin{subequations} \begin{align} 6&\equiv 0\bmod{6}&7&\equiv 1\bmod{6}\\ 8&\equiv 2\bmod{6}&9&\equiv 3\bmod{6}\\ 10&\equiv 4\bmod{6}&11&\equiv 5\bmod{6} \end{align} \end{subequations}

23 The \intertext Command The command\intertext{text to insert} is used to insert a line or more of text between lines of any of the multi-lined environments introduced. For example to produce and type \begin{align*} f(x)&= x^2\\ \intertext{and} g(x)&=6x-7 \end{align*} f (x) = x 2 g(x) = 6x 7

24 Spacing Hints When aligning at a relationship such as =, <, etc. put the & symbol before the relationship symbol for the best spacing. When aligning on a relationship and a line must be broken before the next relationship, break and align on a + or, but put extra space after the &. For example to produce (a + b + c) (A + B + C ) = aa + ab + ac + ba + bb + bc type + ca + cb + cc \begin{align*} (a+b+c)\times(a+b+c)&=aa+ab+ac+ba+bb+bc\\ &\phantom{=}+ca+cb+cc \end{align*}

25 The aligned and gathered Environments Unlike the previous environments, these two can be used in line and hence must be preceded with a begin math mode of some type. The formatting rules for each of these environments are the same as those of their namesakes. For example The pair u xx + u yy = 0 for x 2 + y 2 < 1 u(x,y) = f (x,y) for x 2 + y 2 is a boundary value = 1 problem. is produced by typing The pair $\begin{aligned} u_{xx}+u_{yx}&=o\text{ for }x^2+y^2<1\\ u(x,y)&=0\f(x,y)\text{ for }x^2+y^2=1 \end{aligned}$ is a boundary value problem. The command \text is used as a convenient way to insert text while in math mode. Note that the extra space needed to separate x from the text is with a space in the argument of \text where a space is recognized.

26 The cases Environment To produce the type of structure { 0 if x is a rational number f (x) = 1 if x is an irrational number (6) before the appearance of the cases environment required the array environment and many extra steps. Now it s much easier. Simply type $$f(x)=\begin{cases} 0&\text{if } x \text{ is a rational number}\\ 1&\text{if } x \text{ is an irrational number} \end{cases}$$ The cases environment can be used in line in the same way as the aligned environment.

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting

LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting LaTeX Seminar III: Environments and More Advanced Mathematical Typesetting Clifford E. Weil March 24, 2004 1 General Environments We have already encountered two environments. They are the document environment

More information

Using the amsthm Package

Using the amsthm Package Using the amsthm Package Version 2.20, August 2004 American Mathematical Society 1 Introduction The amsthm package provides an enhanced version of L A TEX s \newtheorem command for defining theorem-like

More information

Paul Gartside. March 2, 2013

Paul Gartside. March 2, 2013 SIAM L A TEX Workshop: First Steps Paul Gartside March 2, 2013 1 Introduction Today you are going to take the first steps in learning how to create beautiful mathematical documents using L A TEX (or review

More information

L A TEX Seminar Fall Semester 2007

L A TEX Seminar Fall Semester 2007 L A TEX Seminar Fall Semester 2007 Clifford E. Weil Contents 1 Introduction. 3 2 The Basics of Commands. 3 2.1 Spaces.................................. 4 2.2 Hyphens................................ 5 2.3

More information

Using the amsthm Package

Using the amsthm Package Using the amsthm Package Version 2.20.3, September 2017 Publications Technical Group American Mathematical Society Contents 1 Introduction 2 2 Setup and input of theorem elements 2 2.1 Theorems beginning

More information

Not-So-Frequently Asked Questions for L A TEX

Not-So-Frequently Asked Questions for L A TEX Not-So-Frequently Asked Questions for L A TEX Miles 2010 This document addresses more esoteric issues in L A TEX that have nonetheless actually arisen with the author. We hope that somebody will find it

More information

A Beginner s guide to L A TEX for CSCA67/MATA67. Kohilan Mohanarajan

A Beginner s guide to L A TEX for CSCA67/MATA67. Kohilan Mohanarajan A Beginner s guide to L A TEX for CSCA67/MATA67 Kohilan Mohanarajan August 31, 2017 Contents 1 Foreword 2 2 Getting Started 3 3 Setting up your L A TEXDocument 4 4 Writing your L A TEXDocument 6 4.1 Environments...............................

More information

Manuscript Title. with Forced Linebreak. Ann Author a) and Second Author b) Authors institution and/or address This line break forced with \\

Manuscript Title. with Forced Linebreak. Ann Author a) and Second Author b) Authors institution and/or address This line break forced with \\ Manuscript Title: with Forced Linebreak Ann Author a) and Second Author b) Authors institution and/or address This line break forced with \\ Charlie Authoring c) Second institution and/or address This

More information

Math 291: Lecture 3. Justin A. James. Minnesota State University Moorhead web.mnstate.edu/jamesju

Math 291: Lecture 3. Justin A. James. Minnesota State University Moorhead web.mnstate.edu/jamesju Math 291: Lecture 3 Justin A. James Minnesota State University Moorhead web.mnstate.edu/jamesju jamesju@mnstate.edu January 26, 2016 Justin A. James (MSUM) Math 291: Lecture 3 January 26, 2016 1 / 18 1

More information

Become a L A TEX Guru

Become a L A TEX Guru Become a L A TEX Guru 1 Many thanks to Michele, who was my coteacher for this class for Splash 2009 1. Log in using the username sipb2 and the password hsspmonster 2. Once you are logged on, type sudo

More information

Math 235: Introduction to LaTeX

Math 235: Introduction to LaTeX Math 235: Introduction to LaTeX The LaTeX word processing system was built to do mathematical typesetting. It is different than word processors; in LaTeX you type in text and typesetting commands, then

More information

LaTeX Style Guide for the Journal of Integer Sequences

LaTeX Style Guide for the Journal of Integer Sequences LaTeX Style Guide for the Journal of Integer Sequences Version 1.57 Authors of papers in the Journal of Integer Sequences should write their papers in English. If English is not your native language, please

More information

Math Introduction to Advanced Mathematics

Math Introduction to Advanced Mathematics Math 215 - Introduction to Advanced Mathematics Number Theory Fall 2017 The following introductory guide to number theory is borrowed from Drew Shulman and is used in a couple of other Math 215 classes.

More information

Introduction to MCS 220 and L A TEX

Introduction to MCS 220 and L A TEX Introduction to MCS 220 and L A TEX Tom LoFaro August 28, 2009 1 Introduction to MCS 220 MCS 220, Introduction to Analysis, carries a WRITD (writing in the discipline) designation. What this means to you

More information

L A TEX Class Holiday Inn Fisherman s Wharf San Francisco, CA July Cheryl Ponchin Sue DeMerritt

L A TEX Class Holiday Inn Fisherman s Wharf San Francisco, CA July Cheryl Ponchin Sue DeMerritt L A TEX Class Holiday Inn Fisherman s Wharf San Francisco, CA July 2004 Cheryl Ponchin Sue DeMerritt i Contents 1 Table of Contents 1 Youmayneedtoaddextrainformation... 1 Adding to Contents 1 2 Make an

More information

Basic instructions for writing a paper

Basic instructions for writing a paper Basic instructions for writing a paper A paper must be written correctly in LaTeX 2e, i.e.: using \mathcal{} instead of \cal; \mathrm{} or \textrm{} instead of \rm etc. Please, use: \documentclass[reqno,b5paper]{amsart}

More information

Typesetting Text. Spring 2013 TEX-Bit #1 Math 406

Typesetting Text. Spring 2013 TEX-Bit #1 Math 406 Spring 2013 TEX-Bit #1 Math 406 Typesetting Text Whitespace characters, such as blank or tab, are treated uniformly as space by L A TEX. Several consecutive whitespace characters are treated as one space.

More information

1 Elementary number theory

1 Elementary number theory Math 215 - Introduction to Advanced Mathematics Spring 2019 1 Elementary number theory We assume the existence of the natural numbers and the integers N = {1, 2, 3,...} Z = {..., 3, 2, 1, 0, 1, 2, 3,...},

More information

Preparation of ADSA and IJDE Manuscripts

Preparation of ADSA and IJDE Manuscripts Preparation of ADSA and IJDE Manuscripts http://campus.mst.edu/adsa http://campus.mst.edu/ijde Before submitting your paper to ADSA or IJDE, please follow all instructions as given in this document. If

More information

L A TEX Primer. Randall R. Holmes. August 17, 2018

L A TEX Primer. Randall R. Holmes. August 17, 2018 L A TEX Primer Randall R. Holmes August 17, 2018 Note: For this to make sense it needs to be read with the code and the compiled output side by side. And in order for the compiling to be successful, the

More information

Using L A TEX Tom Edgar

Using L A TEX Tom Edgar M499 - Senior Capstone Using L A TEX Tom Edgar Department of Mathematics Pacific Lutheran University Tacoma, WA Wednesday, September 17, 2014 Introduction Introduction What is L A TEX? Powerful (Mathematical)

More information

Section 1.8. Simplifying Expressions

Section 1.8. Simplifying Expressions Section 1.8 Simplifying Expressions But, first Commutative property: a + b = b + a; a * b = b * a Associative property: (a + b) + c = a + (b + c) (a * b) * c = a * (b * c) Distributive property: a * (b

More information

GCSE-AS Mathematics Bridging Course. Chellaston School. Dr P. Leary (KS5 Coordinator) Monday Objectives. The Equation of a Line.

GCSE-AS Mathematics Bridging Course. Chellaston School. Dr P. Leary (KS5 Coordinator) Monday Objectives. The Equation of a Line. GCSE-AS Mathematics Bridging Course Chellaston School Dr (KS5 Coordinator) Monday Objectives The Equation of a Line Surds Linear Simultaneous Equations Tuesday Objectives Factorising Quadratics & Equations

More information

Multiline math displays

Multiline math displays CHAPTER Multiline math displays This is, possibly, the most important chapter on AMS-IbTEX: a discussion of how to display math formulas on more than one line using the constructs provided by the amsmath

More information

Introduction to L A TEX for MCS-236

Introduction to L A TEX for MCS-236 Introduction to L A TEX for MCS-236 Max Hailperin, based on a version by Tom LoFaro September 14, 2011 1 Why L A TEX? L A TEX is a very strange document formatting system. Actually, it is a combination

More information

Lecture slides for MA2730 Analysis I

Lecture slides for MA2730 Analysis I Lecture slides for MA2730 Analysis I Simon people.brunel.ac.uk/~icsrsss simon.shaw@brunel.ac.uk College of Engineering, Design and Physical Sciences bicom & Materials and Manufacturing Research Institute

More information

Definition. A Taylor series of a function f is said to represent function f, iff the error term converges to 0 for n going to infinity.

Definition. A Taylor series of a function f is said to represent function f, iff the error term converges to 0 for n going to infinity. Definition A Taylor series of a function f is said to represent function f, iff the error term converges to 0 for n going to infinity. 120202: ESM4A - Numerical Methods 32 f(x) = e x at point c = 0. Taylor

More information

Why is there money? Received Date; Received in Revised Form Date; Accepted Date

Why is there money? Received Date; Received in Revised Form Date; Accepted Date Why is there money? First Author a,, Second Author b a Institute of Far Away Places; b Institute of Even Further Away Places Received Date; Received in Revised Form Date; Accepted Date Abstract The oldest

More information

L A TEX Seminar Fall Semester, 2008

L A TEX Seminar Fall Semester, 2008 L A TEX Seminar Fall Semester, 2008 Clifford E. Weil Contents 1 Introduction. 1 2 Some Basics. 1 2.1 Special Keystrokes........................... 2 2.2 Simple Commands........................... 2 2.3

More information

Typesafe cross-referencing with typedref

Typesafe cross-referencing with typedref Typesafe cross-referencing with typedref James Ashton Gregory Seidman March 26, 2013 Abstract The typedref package replaces \ref with \figureref, \sectionref, \eqref, etc. so that you re forced to specify

More information

Using SIAM s Book Class

Using SIAM s Book Class Using SIAM s Book Class John Rogosich Techsetters, Inc October 22, 2003 Contents 1 Introduction 1 2 The Document Preamble and Class Options 2 3 Frontmatter 4 31 TableofContents 4 32 Preface 4 33 Optional

More information

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3

LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 LATEX TYPESETTING SYSTEM. CAAM 519, CHAPTER 3 1. Latex installation and text editors 1.1. Installation. Install Latex in your virtual machine with the following command. sudo apt get install texlive Note

More information

Manuscript Title: with Forced Linebreak

Manuscript Title: with Forced Linebreak Manuscript Title: with Forced Linebreak Ann Author and econd Author Authors institution and/or address This line break forced with \\ (MUO Collaboration) Charlie Author econd institution and/or address

More information

MAINE ASSOCIATION OF MATH LEAGUES RULES GOVERNING QUESTIONS, ANSWERS, AND GRADING

MAINE ASSOCIATION OF MATH LEAGUES RULES GOVERNING QUESTIONS, ANSWERS, AND GRADING MAINE ASSOCIATION OF MATH LEAGUES RULES GOVERNING QUESTIONS, ANSWERS, AND GRADING 05-06 Introduction Philosophy. It is the intent of MAML to promote Maine high school mathematics competitions. The questions

More information

Guide to L A TEX. Daniel M. Kane

Guide to L A TEX. Daniel M. Kane Guide to L A TEX Daniel M. Kane 1 Overview TEXis a typesetting program developed by Donald Knuth. L A TEXwas an extension of TEXcreated by Leslie Lamport, making a number of operations considerably easier.

More information

1 Elementary number theory

1 Elementary number theory 1 Elementary number theory We assume the existence of the natural numbers and the integers N = {1, 2, 3,...} Z = {..., 3, 2, 1, 0, 1, 2, 3,...}, along with their most basic arithmetical and ordering properties.

More information

TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to add some mathematical content to his or her paper. In particular,

More information

Using the Penn Biostat LaTeX Templates

Using the Penn Biostat LaTeX Templates Using the Penn Biostat LaTeX Templates Sarah J. Ratcliffe Professor of Biostatistics January 4, 2018 Why LaTeX? It s is a document preparation system for high-quality typesetting. Controls all the page

More information

Algebra 1 Review. Properties of Real Numbers. Algebraic Expressions

Algebra 1 Review. Properties of Real Numbers. Algebraic Expressions Algebra 1 Review Properties of Real Numbers Algebraic Expressions Real Numbers Natural Numbers: 1, 2, 3, 4,.. Numbers used for counting Whole Numbers: 0, 1, 2, 3, 4,.. Natural Numbers and 0 Integers:,

More information

L A TEX examples. a b c a b c b b a c b c c b a. This table was typeset with the following commands.

L A TEX examples. a b c a b c b b a c b c c b a. This table was typeset with the following commands. L A TEX examples This document is designed to help you see how to produce some mathematical typesetting. The best way to learn how to use L A TEX is to experiment with particular commands. After you have

More information

Integers and Mathematical Induction

Integers and Mathematical Induction IT Program, NTUT, Fall 07 Integers and Mathematical Induction Chuan-Ming Liu Computer Science and Information Engineering National Taipei University of Technology TAIWAN 1 Learning Objectives Learn about

More information

CLV Manual. How to Use CLV L A TEX Style. Odié N. Gementera SPI Publisher Services

CLV Manual. How to Use CLV L A TEX Style. Odié N. Gementera SPI Publisher Services CLV Manual How to Use CLV L A TEX Style Odié N. Gementera SPI Publisher Services This article describes how to use the article class and CLV1 style with L A TEX to produce typeset papers based on Computer

More information

CSE 150: Notation Examples

CSE 150: Notation Examples CSE 150: Notation s Leif Walsh December 12, 2007 For most of the following, you will need to include amsmath, amsfonts, amsthm, and sometimes amssymb in your source, by putting the \usepackage{amsmath}

More information

MAT 003 Brian Killough s Instructor Notes Saint Leo University

MAT 003 Brian Killough s Instructor Notes Saint Leo University MAT 003 Brian Killough s Instructor Notes Saint Leo University Success in online courses requires self-motivation and discipline. It is anticipated that students will read the textbook and complete sample

More information

Title of Your Thesis: Subtitle of Your Thesis

Title of Your Thesis: Subtitle of Your Thesis Title of Your Thesis: Subtitle of Your Thesis A thesis presented by James W. Smith to The Department of Mathematics in partial fulfillment of the requirements for the degree of Doctor of Philosophy in

More information

A GRADUATE STUDENT'S GUIDE TO LATEX AND AMS-LATEX

A GRADUATE STUDENT'S GUIDE TO LATEX AND AMS-LATEX DEPARTMENT OF MATHEMATICS TECHNICAL REPORT A GRADUATE STUDENT'S GUIDE TO LATEX AND AMS-LATEX DR. RAFAL ABLAMOWICZ FEBRUARY 2003 No. 2003-1 TENNESSEE TECHNOLOGICAL UNIVERSITY Cookeville, TN 38505 A Graduate

More information

Math 213 Exam 2. Each question is followed by a space to write your answer. Please write your answer neatly in the space provided.

Math 213 Exam 2. Each question is followed by a space to write your answer. Please write your answer neatly in the space provided. Math 213 Exam 2 Name: Section: Do not remove this answer page you will return the whole exam. You will be allowed two hours to complete this test. No books or notes may be used other than a onepage cheat

More information

Know the Well-ordering principle: Any set of positive integers which has at least one element contains a smallest element.

Know the Well-ordering principle: Any set of positive integers which has at least one element contains a smallest element. The first exam will be on Wednesday, September 22, 2010. The syllabus will be sections 1.1 and 1.2 in Lax, and the number theory handout found on the class web site, plus the handout on the method of successive

More information

INTRODUCTION TO L A TEX

INTRODUCTION TO L A TEX INTRODUCTION TO L A TEX JEREMY WEST 1. Introduction L A TEXis a markup language for a typesetting system. A markup language is a collection of commands, often called macros, which describe the formatting

More information

INSTALLING AND USING L A TEX

INSTALLING AND USING L A TEX INSTALLING AND USING L A TEX DAVID MEREDITH Contents 1. Installing and Running L A TEX with Microsoft Windows 2 1.1. Installing the compiler MikTeX 2 1.2. Installing the editor TeXtudio 2 1.3. Running

More information

Chapter 1: Number and Operations

Chapter 1: Number and Operations Chapter 1: Number and Operations 1.1 Order of operations When simplifying algebraic expressions we use the following order: 1. Perform operations within a parenthesis. 2. Evaluate exponents. 3. Multiply

More information

My Mathematical Thesis

My Mathematical Thesis My Mathematical Thesis A. Student September 1, 2018 Abstract An abstract is a paragraph or few that gives the reader an overview of the document. Abstracts are commonly found on research articles, but

More information

PreCalculus Summer Assignment

PreCalculus Summer Assignment PreCalculus Summer Assignment Welcome to PreCalculus! We are excited for a fabulous year. Your summer assignment is available digitally on the Lyman website. You are expected to print your own copy. Expectations:

More information

A Demonstration of the L A TEX 2ε Class File for the Oxford University Press Ltd Journal. First Author 1 and Second Author 2.

A Demonstration of the L A TEX 2ε Class File for the Oxford University Press Ltd Journal. First Author 1 and Second Author 2. Author, F, and S Author (2009) A Demonstration of the LATEX 2ε Class File for the Oxford University Press Ltd Journal, International Mathematics Research Notices, Vol 2009, Article ID rnn999, 6 pages doi:101093/imrn/rnn999

More information

2 Review of Set Theory

2 Review of Set Theory 2 Review of Set Theory Example 2.1. Let Ω = {1, 2, 3, 4, 5, 6} 2.2. Venn diagram is very useful in set theory. It is often used to portray relationships between sets. Many identities can be read out simply

More information

Math 3 Coordinate Geometry Part 2 Graphing Solutions

Math 3 Coordinate Geometry Part 2 Graphing Solutions Math 3 Coordinate Geometry Part 2 Graphing Solutions 1 SOLVING SYSTEMS OF EQUATIONS GRAPHICALLY The solution of two linear equations is the point where the two lines intersect. For example, in the graph

More information

Tools for Scientific Writing with LAT E X. Johan Carlson

Tools for Scientific Writing with LAT E X. Johan Carlson Tools for Scientific Writing with LAT E X Johan Carlson Luleå University of Technology Dept. of CSEE EISLAB Email: johanc@csee.ltu.se Tools for Scientific Writing Lecture no. 3 1 Last lecture Bibliography

More information

COMMUNITY UNIT SCHOOL DISTRICT 200

COMMUNITY UNIT SCHOOL DISTRICT 200 COMMUNITY UNIT SCHOOL DISTRICT 200 Regular Math Middle School Grade 8 1. Subject Expectation (State Goal 6) Essential Learning 1 (Learning Standard A) (Learning Standard D) Students will be able to demonstrate

More information

Ch 3.4 The Integers and Division

Ch 3.4 The Integers and Division Integers and Division 1 Ch 3.4 The Integers and Division This area of discrete mathematics belongs to the area of Number Theory. Some applications of the concepts in this section include generating pseudorandom

More information

2 Second Derivatives. As we have seen, a function f (x, y) of two variables has four different partial derivatives: f xx. f yx. f x y.

2 Second Derivatives. As we have seen, a function f (x, y) of two variables has four different partial derivatives: f xx. f yx. f x y. 2 Second Derivatives As we have seen, a function f (x, y) of two variables has four different partial derivatives: (x, y), (x, y), f yx (x, y), (x, y) It is convenient to gather all four of these into

More information

Algebra 2 Common Core Summer Skills Packet

Algebra 2 Common Core Summer Skills Packet Algebra 2 Common Core Summer Skills Packet Our Purpose: Completion of this packet over the summer before beginning Algebra 2 will be of great value to helping students successfully meet the academic challenges

More information

9.5 Equivalence Relations

9.5 Equivalence Relations 9.5 Equivalence Relations You know from your early study of fractions that each fraction has many equivalent forms. For example, 2, 2 4, 3 6, 2, 3 6, 5 30,... are all different ways to represent the same

More information

L A TEX and Basic Text Editing

L A TEX and Basic Text Editing L A TEX and Basic Text Editing 1 Basics L A TEXis a mathematical typesetting word processing tool. You need a compiler to display L A TEX, and you can dowload the open-source freeware at MikTex.org. We

More information

Finite Math - J-term Homework. Section Inverse of a Square Matrix

Finite Math - J-term Homework. Section Inverse of a Square Matrix Section.5-77, 78, 79, 80 Finite Math - J-term 017 Lecture Notes - 1/19/017 Homework Section.6-9, 1, 1, 15, 17, 18, 1, 6, 9, 3, 37, 39, 1,, 5, 6, 55 Section 5.1-9, 11, 1, 13, 1, 17, 9, 30 Section.5 - Inverse

More information

LATEX. Leslie Lamport. Digital Equipment Corporation. Illustrations by Duane Bibby. v ADDISON-WESLEY

LATEX. Leslie Lamport. Digital Equipment Corporation. Illustrations by Duane Bibby. v ADDISON-WESLEY LATEX A Document Preparation System User's Guide and Reference Manual Leslie Lamport Digital Equipment Corporation Illustrations by Duane Bibby v ADDISON-WESLEY Boston San Francisco New York Toronto Montreal

More information

Chapter Seven: Regular Expressions

Chapter Seven: Regular Expressions Chapter Seven: Regular Expressions Regular Expressions We have seen that DFAs and NFAs have equal definitional power. It turns out that regular expressions also have exactly that same definitional power:

More information

A.1 Numbers, Sets and Arithmetic

A.1 Numbers, Sets and Arithmetic 522 APPENDIX A. MATHEMATICS FOUNDATIONS A.1 Numbers, Sets and Arithmetic Numbers started as a conceptual way to quantify count objects. Later, numbers were used to measure quantities that were extensive,

More information

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date This is page i Printer: Opaque this The Title of a Book Dr. Author Jones The Date ii ABSTRACT This document illustrates many features of a mathematics article, but we do not explain the spurious appearance

More information

An Introduction to L A TEX

An Introduction to L A TEX An Introduction to L A TEX Ryan C. Trinity University Math Majors Seminar September 12, 2017 What is L A TEX? L A TEX is a typesetting system/language used for the production of technical (mathematical)

More information

Section 1.7 Sequences, Summations Cardinality of Infinite Sets

Section 1.7 Sequences, Summations Cardinality of Infinite Sets Section 1.7 Sequences, Summations Cardinality of Infinite Sets Definition: A sequence is a function from a subset of the natural numbers (usually of the form {0, 1, 2,... } to a set S. Note: the sets and

More information

Decimal Binary Conversion Decimal Binary Place Value = 13 (Base 10) becomes = 1101 (Base 2).

Decimal Binary Conversion Decimal Binary Place Value = 13 (Base 10) becomes = 1101 (Base 2). DOMAIN I. NUMBER CONCEPTS Competency 00 The teacher understands the structure of number systems, the development of a sense of quantity, and the relationship between quantity and symbolic representations.

More information

A Brief Introduction to L A TEX

A Brief Introduction to L A TEX A Brief Introduction to L A TEX Amanda Kriesel Metropolitan Community College, Nebraska akriesel@mccneb.edu April 7, 2016 Amanda Kriesel (MCC) LaTex April 7, 2016 1 / 17 Table of Contents 1 What is L A

More information

Learning LaTeX: The Basics

Learning LaTeX: The Basics Learning LaTeX: The Basics The best way to learn LaTeX is by trial and error, with a lot of experimenting, and using other people s.tex files as a model. Google is also a good source: for example, googling

More information

Unit 7 Number System and Bases. 7.1 Number System. 7.2 Binary Numbers. 7.3 Adding and Subtracting Binary Numbers. 7.4 Multiplying Binary Numbers

Unit 7 Number System and Bases. 7.1 Number System. 7.2 Binary Numbers. 7.3 Adding and Subtracting Binary Numbers. 7.4 Multiplying Binary Numbers Contents STRAND B: Number Theory Unit 7 Number System and Bases Student Text Contents Section 7. Number System 7.2 Binary Numbers 7.3 Adding and Subtracting Binary Numbers 7.4 Multiplying Binary Numbers

More information

A template for submissions to EMSS

A template for submissions to EMSS EMS Surv. Math. Sci. x (201x), xxx xxx DOI 10.4171/EMSS/x EMS Surveys in Mathematical Sciences c European Mathematical Society A template for submissions to EMSS First author s name and second author s

More information

6th Bay Area Mathematical Olympiad

6th Bay Area Mathematical Olympiad 6th Bay Area Mathematical Olympiad February 4, 004 Problems and Solutions 1 A tiling of the plane with polygons consists of placing the polygons in the plane so that interiors of polygons do not overlap,

More information

CGF Lecture 2 Numbers

CGF Lecture 2 Numbers CGF Lecture 2 Numbers Numbers A number is an abstract entity used originally to describe quantity. i.e. 80 Students etc The most familiar numbers are the natural numbers {0, 1, 2,...} or {1, 2, 3,...},

More information

Math 221 Final Exam Review

Math 221 Final Exam Review Math 221 Final Exam Review Preliminary comment: Some of these problems a formulated using language and structures from graph theory. However they are generally self contained; no theorems from graph theory

More information

Math typesetting guide

Math typesetting guide Math typesetting guide Carleton College L A TEX worshop One of L A TEX s most important and widely-nown features is its exceptional math typesetting. Once you have the hang of it, you can easily typeset

More information

DeMorgan's Theorem. George Self. 1 Introduction

DeMorgan's Theorem. George Self. 1 Introduction OpenStax-CNX module: m46633 1 DeMorgan's Theorem George Self This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract Boolean Algebra is used to mathematically

More information

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date

This is page i Printer: Opaque this. The Title of a Book. Dr. Author Jones. The Date This is page i Printer: Opaque this The Title of a Book Dr. Author Jones The Date ii ABSTRACT This document illustrates many features of a mathematics article, but we do not explain the spurious appearance

More information

Section 2.4 Sequences and Summations

Section 2.4 Sequences and Summations Section 2.4 Sequences and Summations Definition: A sequence is a function from a subset of the natural numbers (usually of the form {0, 1, 2,... } to a set S. Note: the sets and {0, 1, 2, 3,..., k} {1,

More information

(a) (4 pts) Prove that if a and b are rational, then ab is rational. Since a and b are rational they can be written as the ratio of integers a 1

(a) (4 pts) Prove that if a and b are rational, then ab is rational. Since a and b are rational they can be written as the ratio of integers a 1 CS 70 Discrete Mathematics for CS Fall 2000 Wagner MT1 Sol Solutions to Midterm 1 1. (16 pts.) Theorems and proofs (a) (4 pts) Prove that if a and b are rational, then ab is rational. Since a and b are

More information

An Interactive Introduction to L A TEX

An Interactive Introduction to L A TEX An Interactive Introduction to L A TEX Part 1: The Basics Dr John D. Lees-Miller December 2, 2017 Why L A TEX? It makes beautiful documents Especially mathematics It was created by scientists, for scientists

More information

Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives

Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives. Partial Derivatives In general, if f is a function of two variables x and y, suppose we let only x vary while keeping y fixed, say y = b, where b is a constant. By the definition of a derivative, we have Then we are really

More information

Guidelines for ETNA manuscripts 1

Guidelines for ETNA manuscripts 1 Guidelines for ETNA manuscripts 1 1 General formatting guidelines A manuscript for ETNA must be written in English. It may be in color provided it is equally readable when displayed in black and white.

More information

Project 2: How Parentheses and the Order of Operations Impose Structure on Expressions

Project 2: How Parentheses and the Order of Operations Impose Structure on Expressions MAT 51 Wladis Project 2: How Parentheses and the Order of Operations Impose Structure on Expressions Parentheses show us how things should be grouped together. The sole purpose of parentheses in algebraic

More information

Advanced L A TEX. Dan Parker and David Schwein. Spring 2015

Advanced L A TEX. Dan Parker and David Schwein. Spring 2015 Advanced L A TEX Dan Parker and David Schwein Spring 2015 Welcome to the second of the Brown Science Center s L A TEX Workshops! This workshop covers advanced material in L A TEX: complicated mathematical

More information

Tools for Scientific Writing with LAT E X. Johan Carlson

Tools for Scientific Writing with LAT E X. Johan Carlson Tools for Scientific Writing with LAT E X Johan Carlson Luleå University of Technology Dept. of CSEE EISLAB Email: johanc@csee.ltu.se Tools for Scientific Writing Lecture no. 2 1 Last lecture What is L

More information

Learn how to [learn] LATEX

Learn how to [learn] LATEX Learn how to [learn] L A TEX November 19, 2010 This document is available at http://web.mit.edu/jgross/ Public/2010cluedump/Slideshow.pdf. Outline Installing L A TEX What is L A TEX? Getting Help Basic

More information

Environments, Equations, and Tables

Environments, Equations, and Tables Environments, Equations, and Tables David Freund October 13, 2016 1 Environments In L A TEX, environments are sections of code delineated by \begin{stuff} and \end{stuff}. Most text formatting is done

More information

Partial Derivatives (Online)

Partial Derivatives (Online) 7in x 10in Felder c04_online.tex V3 - January 21, 2015 9:44 A.M. Page 1 CHAPTER 4 Partial Derivatives (Online) 4.7 Tangent Plane Approximations and Power Series It is often helpful to use a linear approximation

More information

Practical Mathematical Handwriting

Practical Mathematical Handwriting Practical Mathematical Handwriting Xiong Rui December 26, 2018 Abstract In mathematical texts and papers (by TEX, of course), there involves different kinds of fonts. For example, A A A A A It looks beautiful

More information

2 Solution of Homework

2 Solution of Homework Math 3181 Name: Dr. Franz Rothe February 6, 2014 All3181\3181_spr14h2.tex Homework has to be turned in this handout. The homework can be done in groups up to three due February 11/12 2 Solution of Homework

More information

Introduction to Math in LaTeX

Introduction to Math in LaTeX Robert Andersen University of Oxford and University of Western Ontario ICPSR Summer Program, July 2002 Introduction to Math in LaTeX LaTeX has three basic modes: 1. Text mode 2. Inline math mode (allows

More information

ALGEBRA I Summer Packet

ALGEBRA I Summer Packet ALGEBRA I Summer Packet 2018-2019 Name 7 th Grade Math Teacher: Objectives for Algebra I Summer Packet I. Variables and translating (Problems #1 5) Write Algebraic Expressions Writing Algebraic Equations

More information

Definition 2 (Projective plane). A projective plane is a class of points, and a class of lines satisfying the axioms:

Definition 2 (Projective plane). A projective plane is a class of points, and a class of lines satisfying the axioms: Math 3181 Name: Dr. Franz Rothe January 30, 2014 All3181\3181_spr14h2.tex Homework has to be turned in this handout. The homework can be done in groups up to three due February 11/12 2 Homework 1 Definition

More information

MEI STRUCTURED MATHEMATICS METHODS FOR ADVANCED MATHEMATICS, C3. Practice Paper C3-B

MEI STRUCTURED MATHEMATICS METHODS FOR ADVANCED MATHEMATICS, C3. Practice Paper C3-B MEI Mathematics in Education and Industry MEI STRUCTURED MATHEMATICS METHODS FOR ADVANCED MATHEMATICS, C3 Practice Paper C3-B Additional materials: Answer booklet/paper Graph paper List of formulae (MF)

More information

Math 96--Radicals #1-- Simplify; Combine--page 1

Math 96--Radicals #1-- Simplify; Combine--page 1 Simplify; Combine--page 1 Part A Number Systems a. Whole Numbers = {0, 1, 2, 3,...} b. Integers = whole numbers and their opposites = {..., 3, 2, 1, 0, 1, 2, 3,...} c. Rational Numbers = quotient of integers

More information

Preparing Basic Manuscripts with L A TEX

Preparing Basic Manuscripts with L A TEX Preparing Basic Manuscripts with L A TEX Garrett Darl Lewis Department of Politics Princeton University March 24, 2015 Abstract This is an interactive document designed to introduce seminar participants

More information