Size: px
Start display at page:

Download ""

Transcription

1 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, the author will learn how to incorporate mathematical expressions within a sentence, how to set mathematical expressions apart from the text in either numbered or unnumbered environments, and how to add internal labels and provide references to numbered mathematical expressions. 1. Welcome Hello. My name is Dr. Christopher Raridan (Dr. R). I want to welcome you to the L A TEX Tutorial Series. In this tutorial, we will introduce a few of the more common commands and mathematical constructs. For a complete listing of L A TEX symbols, please refer to the Additional Resources provided on Dr. Raridan s L A TEX Tutorials page: By the end of this tutorial, the author should be able to add some mathematical content to his or her paper. Part of Math 3006, Communication in Mathematics, Clayton State University. 1

2 2 C. RARIDAN The author will learn how to incorporate mathematical expressions within a sentence and how to set mathematical expressions apart from the text in either numbered or unnumbered environments. In addition, the author will learn how to add internal labels and provide references to numbered mathematical expressions. This is the eighth in a series of tutorials meant introduce you to L A TEX. We assume that you have successfully completed Tutorial 7 and we will use the results of this tutorial in subsequent tutorials. Hopefully, Windows and Mac users will have a similar experience. 2. Getting Started (1) Navigate to the LaTeX Tutorials folder on your computer. (2) Inside this folder, create a new folder entitled Typesetting Mathematical Expressions. (3) Open the Article Template II folder. (4) Double-click on the Article-Template-II.tex file. (5) In the TeXworks editor, if the Tags menu is not open, click [Window] > Show > Tags. (6) Change the title of this article to Typesetting Mathematical Expressions with an appropriate short title, say, Typing Math.

3 TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS 3 (7) Now, change all of the author information to your information if you do not have this currently. (8) Delete everything between the % BEGIN ARTICLE BODY and % END ARTICLE BODY comments, making sure to leave one blank line between the two comments. (9) Click [File] > Save As... (10) Navigate to your Typesetting Mathematical Expressions folder. (11) Inside that folder, name your file Typesetting-Mathematical-Expressions.tex. (12) Click [Save] to save your file. 3. In-Line Mathematics We refer to mathematical expression fall within a sentence as in-line mathematics. These expressions are enclosed in dollar signs. (1) Place your cursor at the end of the % BEGIN ARTICLE BODY comment and hit [Enter] twice. (2) Type \section{in-line Mathematics} and hit [Enter]. (3) Type \label{sec:in-line} and hit [Enter] twice. (4) Type In-line mathematical expressions are those that appear within a sentence. In-line mathematical expressions are created using dollar signs. and hit [Enter] twice. (5) [Ctrl]+[T] to typeset. (6) Type \subsection{exponentiation} and hit [Enter].

4 4 C. RARIDAN (7) Type \label{subsec:exponents} and hit [Enter] twice. (8) Type If $x = 2$, then $2x + 4 = 8$ and $x^5 = 32$. (9) [Ctrl]+[T] to typeset. (10) You should notice that the mathematical expressions have been typeset appropriately. (11) The carat symbol ^ is obtained by typing [Shift]+[6]; the carat symbol and is used for exponentiation in L A TEX. (12) In most cases, punctuation is not included within the dollar signs. (13) To aid in the readability of your L A TEX code, it is usually a good idea to place a space before and after certain mathematical symbols, such as the plus, minus, equals, etc. (14) Continue typing: If $f(x) = e^x$ and $g(x) = 4x - 2$, then the composite function $f(g(x)) = e^{4x - 2}$.. (15) When typing this sentence, it is probably a good idea to place a space before and after each equals sign to improve readability of your L A TEX code. (16) [Ctrl]+[T] to typeset. (17) L A TEX uses braces around 4x - 2 as grouping symbols to indicate that the objects that fall between them are considered a single unit.

5 TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS 5 (18) Please note that if one wishes to place more than a single character in the exponent, then braces must be used as grouping symbols. (19) Braces may be placed around a single character in the exponent if this improves readability for the author. (20) Again, the punctuation used in this sentence is not a part of the mathematical expressions, so it appears outside the dollar signs. (21) Hit [Enter] twice to start a new paragraph. (22) Type \subsection{subscripts} and hit [Enter]. (23) Type \label{subsec:subscripts} and hit [Enter] twice. (24) Type If $n_1$ and $n_2$ are even integers, then $n_1 + n_2$ is even as well.. (25) [Ctrl]+[T] to typeset. (26) Subscripts are created using the underscore character, or [Shift]+[-]. (27) Please note that if one wishes to place more than a single character in the subscript, then braces must be used as grouping symbols. (28) Braces may be placed around a single character in the subscript if this improves readability for the author. (29) Continue typing: Similarly, if $x_1, x_2, \dots, x_n$ are even integers, then so is $x_1 + x_2 + \cdots + x_n$.

6 6 C. RARIDAN (30) [Ctrl]+[T] to typeset. (31) In this case, notice that the commas that appear as part of the list are enclosed within the dollar signs. (32) This was not necessary, but it frees the author from having to type a lot of extra dollar signs. (33) There are several L A TEX commands for creating various kinds of dots, which indicate continuation. (34) The command \dots creates ellipses and \cdots creates centered dots. (35) What do you think \vdots does? (36) Hit [Enter] twice to start a new paragraph. (37) Type \subsection{fractions} and hit [Enter]. (38) Type \label{subsec:fractions} and hit [Enter] twice. (39) Type The function $r(x) = \frac{1}{x}$ is defined for all $x \not= 0$.. (40) [Ctrl]+[T] to typeset. (41) The command \frac{num}{denom} is used to create fractions, where num is the numerator and denom is the denominator; note that each is enclosed in braces. (42) The command \not can be placed in front of most mathematical symbols to indicate not; in this case, not equal to. (43) Hit [Enter] twice to start a new paragraph.

7 TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS 7 (44) Type \subsection{set-builder Notation} and hit [Enter]. (45) Type \label{subsec:sets} and hit [Enter] twice. (46) Type The equation $x^2 = 4$ has solution set $\{ \pm 2 \}$.. (47) [Ctrl]+[T] to typeset. (48) Because L A TEX has reserved braces for grouping symbols, we must but a backslash in front of the open and closed brace when we want to indicate set-builder notation. (49) The \pm command is an abbreviation for plus or minus. (50) Continue typing: The set of even integers can be expressed as $\{ 2k : k \in \mathbb{z} \}$.. (51) Note specifically the judicious use of spaces before and after certain symbols in the mathematical expression enclosed in dollar signs. (52) [Ctrl]+[T] to typeset. (53) The command \in is used to indicate set inclusion. (54) The command \mathbb{z} creates a blackboard Z, which usually stands for the set of integers. (55) We can create N, C, and others similarly. (56) Hit [Enter] twice to start a new paragraph. (57) Type \subsection{common Functions} and hit [Enter]. (58) Type \label{subsec:functions} and hit [Enter] twice.

8 8 C. RARIDAN (59) Type Most common mathematical functions, like natural logarithm and sine, are created by placing a backslash in front of the function name; for example, $\ln x$ and $\sin( \frac{2}{3}x - \frac{\pi}{4} )$. (60) Be careful to match the open and the closed parentheses or L A TEX will give an error! (61) [Ctrl]+[T] to typeset. (62) Notice that the function names are not typeset in italics, but instead look just like we would write them on paper. (63) The command \pi typesets the pi symbol. (64) The parentheses around the argument of sine are not the same height as the fractions 2 and π but we can fix this. 3 4 (65) Hit [Enter] twice to start a new paragraph. (66) Type \subsection{ Big Grouping Symbols} and hit [Enter]. (67) Type \label{subsec:big-symbols} and hit [Enter] twice. (68) Type We can make grouping symbols such as parentheses larger using the backslash left-right operators; for example, $\sin \left( \frac{2}{3}x - \frac{\pi}{4} \right)$.. (69) The mathematical expression between dollar signs has many spaces so that the L A TEX code is easier to read. (70) However, you cannot put a space between the \left and the ( or the \right and the ); think of each of these as one object.

9 TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS 9 (71) [Ctrl]+[T] to typeset. (72) Notice that the parentheses are now the same size as the fractions. (73) Suppose that you would also like the fractions 2 and π to 3 4 be larger. (74) You can accomplish this using the \displaystyle command within an in-line mathematical expression. (75) Between the first dollar sign and \sin, type \displaystyle and hit space. (76) [Ctrl]+[T] to typeset. (77) Which formatting do you prefer? 4. Displayed Mathematics Displayed mathematics refers to mathematical expressions that are set apart from the text, always centered on the page and often numbered. This method of typesetting mathematical expressions is used primarily when the expression is quite long, rather complicated, or important for some reason. (1) At the end of $\sin \left( \frac{2}{3}x - \frac{\pi}{4} \right)$., hit [Enter] twice. (2) Type \section{displayed Mathematics} and hit [Enter]. (3) Type \label{sec:displayed} and hit [Enter] twice.

10 10 C. RARIDAN (4) Type Displayed mathematical expressions are set apart from the text and centered on the page. They may be numbered or unnumbered. and hit [Enter] twice. (5) [Ctrl]+[T] to typeset The Numbered Environment. (1) Type \subsection{the Numbered Environment} and hit [Enter]. (2) Type \label{subsec:numbered} and hit [Enter] twice. (3) Type The Fundamental Theorem of Calculus says that if a function $f$ is continuous on a closed interval $[a,b]$ and $F$ is any antiderivative of $f$, then and hit [Enter] to go to a new line. (4) Type \begin{align} and hit [Enter] twice. (5) Type \end{align}. (6) Return your cursor to the blank line between the two commands and hit [Tab]. (7) The general rule-of-thumb is to type \begin{} and \end{} constructs in pairs, and tab over for readability. (8) Type \int_{a}^{b} f(x) dx = F(b) - F(a).. (9) Because the align environment is specifically for mathematical expressions, there is no need for the dollar signs or the \displaystyle command here. (10) [Ctrl]+[T] to typeset.

11 TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS 11 (11) You should see a familiar mathematical expression set apart from the text, displayed centered on the page, and numbered. (12) The command \int creates the integral sign, the underscore puts the a at the bottom of the integral sign, and the carat symbol puts the b at the top. (13) Even though there was only a single character used as the bounds on the integral, open and closed braces were included to help improve readability of the L A TEX code. (14) Notice that the f(x) and the dx are a little too close together it would look better if there was just a little space between these two symbols. (15) Place your cursor directly after f(x) and type \,, a backslash followed by a comma. (16) [Ctrl]+[T] to typeset. (17) The command \, puts a small amount of extra space between the f(x) and the dx. (18) Typically, we allow L A TEX to figure out spacing in mathematical symbols, but this is one instance where a little extra space improves readability in the PDF output. (19) As we learned in Tutorial 7, if we wish to refer to this equation by number, we need to add a label. (20) Place your cursor after \int_{a}^{b} f(x) dx = F(b) - F(a). and hit [Enter].

12 12 C. RARIDAN (21) Type \label{eq:ftcii}. (22) The eq reminds us that this label refers to an equation and FTCII reminds us that the equation is the Fundamental Theorem of Calculus, part II. (23) Place your cursor after \end{align} and hit [Enter] to go to a new line (24) Type We use~\eqref{eq:ftcii} to evaluate definite integrals.. (25) Note the tilde to tether. (26) [Ctrl]+[T] to typeset. (27) The \eqref{} command is used only when referencing equations and the equation number appears in parentheses automatically Unnumbered Environments. (1) Now, let s examine how to create a displayed mathematical expression that is not numbered. (2) We have two options: the align* environment and the backslashbrackets method. (3) Place your cursor at the end of We use~\eqref{eq:ftcii} to evaluate definite integrals. and hit [Enter] twice. (4) Type \subsection{unnumbered Environments} and hit [Enter]. (5) Type \label{subsec:unnumbered} and hit [Enter] twice.

13 TUTORIAL 8: TYPESETTING MATHEMATICAL EXPRESSIONS 13 (6) Type First, we show the \texttt{align*} environment. and hit [Enter] twice to start a new paragraph. (7) Type When we have several similar objects to add together, we can use \textbf{summation notation} to abbreviate: and hit [Enter] once to start a new line. (8) Type \begin{align*} and hit [Enter] twice. (9) Type \end{align*}. (10) Don t forget the asterisk in both places! (11) This tells L A TEX to suppress the automatic numbering of equations in an align environment. (12) Place your cursor on the blank line between these two commands and hit [Tab]. (13) Type \sum_{i=1}^{n} a_i = a_1 + a_2 + \cdots + a_n. (14) [Ctrl]+[T] to typeset. (15) Place your cursor at the end of the \end{align*} command and hit [Enter] twice. (16) Type Now, let s examine the backslash-brackets method. and hit [Enter] twice to start a new paragraph. (17) Type We can abbreviate the phrase As $x$ approaches $a$, $f(x)$ approaches $f(a)$ as and hit [Enter] once. (18) Type \[, a space, and \]. (19) Place your cursor after the open bracket and hit the [Spacebar].

14 14 C. RARIDAN (20) Type \lim_{x \rightarrow a} f(x) = f(a).. (21) [Ctrl]+[T] to typeset. (22) Notice that x \rightarrow a is enclosed in braces; it is a single expression that we want to be in the subscript. (23) The align* environment might be considered better than the backslash-brackets method because if you were to decide later that the displayed expression needs a number for referencing, then you can update the L A TEX code easily by simply removing the asterisk and providing a label. 5. Updating the Abstract (1) Locate \begin{abstract} and \end{abstract}. (2) Delete the placeholder abstract and write your own abstract for this article. (3) This abstract should reflect the main ideas of what you learned in this tutorial. (4) Try to summarize what you accomplished in this article in less than five sentences (about 100 words). (5) The pronoun we is considered acceptable for mathematical writing but one should avoid the use of the pronoun I. (6) Try to write the abstract in a way that uses no pronouns! Department of Mathematics, Clayton State University, Morrow, Georgia address: ChristopherRaridan@clayton.edu

TUTORIAL 10: ARRAYS AND MATRICES. 1. Welcome. Hello. My name is Dr. Christopher Raridan (Dr. R). I want to welcome you to the L A TEX Tutorial Series.

TUTORIAL 10: ARRAYS AND MATRICES. 1. Welcome. Hello. My name is Dr. Christopher Raridan (Dr. R). I want to welcome you to the L A TEX Tutorial Series. TUTORIAL 10: ARRAYS AND MATRICES CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to construct arrays and matrices. 1. Welcome Hello. My name is Dr. Christopher

More information

TUTORIAL 5: LIST ENVIRONMENTS. 1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R).

TUTORIAL 5: LIST ENVIRONMENTS. 1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). TUTORIAL 5: LIST ENVIRONMENTS CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to create bullet lists and numbered lists using the itemize and enumerate environments,

More information

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass.

1. Welcome. (1) Hello. My name is Dr. Christopher Raridan (Dr. R). (3) In this tutorial I will introduce you to the amsart documentclass. TUTORIAL 3: MY FIRST L A TEX DOCUMENT CHRISTOPHER RARIDAN Abstract. Upon completion of this tutorial, the author should be able to produce a very basic L A TEX document. This tutorial will introduce the

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

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

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

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

Guide to using L A TEX

Guide to using L A TEX Guide to using L A TEX Andrew Stevens, UC Berkeley 1 What is L A TEX, and why use it? L A TEX (pronounced LAH-tekh or LAY-tekh) is a language and document preparation system for typesetting. L A TEX is

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

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps:

Simple Math. Adam Dishaw 2011 September 21. Suppose you want to include some math in your documents. Just follow these basics steps: Simple Math Adam Dishaw 2011 September 21 Suppose you want to include some math in your documents. Just follow these basics steps: 1. Create a new TEX document with the basic requirements (the documentclass

More information

Math 395 Homework #1 Due Wednesday, April 12

Math 395 Homework #1 Due Wednesday, April 12 Math 395 Homework #1 Due Wednesday, April 12 LaTex is a typesetting system that is widely used by mathematicians. It has the ability to typeset just about any mathematical notation, as well as complex

More information

An Introduction to LATEX

An Introduction to LATEX An Introduction to LATEX Mathematics 23a, Fall 2012 By: Isabel Vogt, Will Rafey, and Neil Gat Last Updated: 13 September, 2012 1 Introduction The simplest way to learn TeX is by example. Copy the heading

More information

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word These instructions assume that you are familiar with using MS Word for ordinary word processing *. If you are not comfortable entering

More information

LATEX Primer. 1 Introduction (Read Me)

LATEX Primer. 1 Introduction (Read Me) LATEX Primer 1 Introduction (Read Me) This document is intended to be used as a primer. You are welcome to remove the body of the document and use the headers only. If you actually read this document,

More information

Typing Mathematics. Darrin Doud

Typing Mathematics. Darrin Doud Typing Mathematics in LATEX Darrin Doud Darrin Doud Department of Mathematics Brigham Young University Provo, UT 84602 doud@math.byu.edu Copyright c 2018 Version: 0.01 Date: January 31, 2018 Contents 1

More information

Using the Equation Palette

Using the Equation Palette module 5 Using the Equation Palette Contents Basic Workflow............................. 244 Exercise 58 Creating Your First Equation..... 245 Exercise 59 Positioning an Equation.......... 250 A Tour of

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

1. Fill in the right hand side of the following equation by taking the derivative: (x sin x) =

1. Fill in the right hand side of the following equation by taking the derivative: (x sin x) = 7.1 What is x cos x? 1. Fill in the right hand side of the following equation by taking the derivative: (x sin x = 2. Integrate both sides of the equation. Instructor: When instructing students to integrate

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

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier Calculus I Review Handout 1.3 Introduction to Calculus - Limits by Kevin M. Chevalier We are now going to dive into Calculus I as we take a look at the it process. While precalculus covered more static

More information

Meeting One. Aaron Ecay. February 2, 2011

Meeting One. Aaron Ecay. February 2, 2011 Meeting One Aaron Ecay February 2, 2011 1 Introduction to a L A TEX file Welcome to LaTeX. Let s start learning how to use the software by going over this document piece by piece. We ll read the output

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

Guidelines for Writing Mathematical Proofs

Guidelines for Writing Mathematical Proofs Appendix A Guidelines for Writing Mathematical Proofs One of the most important forms of mathematical writing is writing mathematical proofs. The writing of mathematical proofs is an acquired skill and

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

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

Homework # (Latex Handout) by Laura Parkinson

Homework # (Latex Handout) by Laura Parkinson 1 Latex Homework # (Latex Handout) by Laura Parkinson Latex helps you make your homework pretty. It makes us happy when you use it. The best way to learn is by example, so here are some examples of pretty

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

Homework # You ll want to use some LaTeX editor to edit and compile your.tex files

Homework # You ll want to use some LaTeX editor to edit and compile your.tex files Homework # 1 What is LaTeX? LaTeX is a document markup language You prepare a (.tex) document, and compile it into a PDF LaTeX helps make your homework pretty (just like this document!) and makes us happy

More information

Lab#1: INTRODUCTION TO DERIVE

Lab#1: INTRODUCTION TO DERIVE Math 111-Calculus I- Fall 2004 - Dr. Yahdi Lab#1: INTRODUCTION TO DERIVE This is a tutorial to learn some commands of the Computer Algebra System DERIVE. Chapter 1 of the Online Calclab-book (see my webpage)

More information

The MathType Window. The picture below shows MathType with all parts of its toolbar visible: Small bar. Tabs. Ruler. Selection.

The MathType Window. The picture below shows MathType with all parts of its toolbar visible: Small bar. Tabs. Ruler. Selection. Handle MathType User Manual The MathType Window The picture below shows MathType with all parts of its toolbar visible: Symbol palettes Template palettes Tabs Small bar Large tabbed bar Small tabbed bar

More information

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number.

Using L A TEX. A numbered list is just that a collection of items sorted and labeled by number. Using L A TEX About these notes These notes give some starting tips on using L A TEX to typeset mathematical documents. To learn the system at all fully you ll need a proper L A TEX manual, but you can

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

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

INTRODUCTION TO DERIVE - by M. Yahdi

INTRODUCTION TO DERIVE - by M. Yahdi Math 111/112-Calculus I & II- Ursinus College INTRODUCTION TO DERIVE - by M. Yahdi This is a tutorial to introduce main commands of the Computer Algebra System DERIVE. You should do (outside of class)

More information

Calculus II - Math 1220 Mathematica Commands: From Basics To Calculus II - Version 11 c

Calculus II - Math 1220 Mathematica Commands: From Basics To Calculus II - Version 11 c Calculus II - Math 1220 Mathematica Commands: From Basics To Calculus II - Version 11 c Edit your document (remove extras and errors, ensure the rest works correctly) and turn-in your print-out. If needed,

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

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

An introduction to L A TEX for students

An introduction to L A TEX for students An introduction to L A TEX for students Christopher Hanusa February 17, 2011 Christopher.Hanusa@qc.cuny.edu http://people.qc.cuny.edu/chanusa/ > Talks Pros and Cons of L A TEX Why use L A TEX? Ideal for

More information

A Short Introduction to Maple

A Short Introduction to Maple A Short Introduction to Maple Math 232, Fall 2018 Instructor: Dr. Doreen De Leon The following sections can be seen by clicking on the arrow to the left of the section name. To hide the material, just

More information

Working with Questions in MathXL for School

Working with Questions in MathXL for School Working with Questions in MathXL for School The pages below provide best practices for entering answers into the MathXL question player to ensure students get proper credit for their answers. When viewing

More information

Casio fx-cg20. Calculator Instructions A B C D E F G. Contents:

Casio fx-cg20. Calculator Instructions A B C D E F G. Contents: Calculator Instructions Casio fx-cg0 Contents: A B C D E F G Basic functions Memory Lists Solving simultaneous equations Statistics Probability Working with functions CASIO FX-CG0 A BASIC FUNCTIONS GROUPING

More information

1. Introduction to Microsoft Excel

1. Introduction to Microsoft Excel 1. Introduction to Microsoft Excel A spreadsheet is an online version of an accountant's worksheet, which can automatically do most of the calculating for you. You can do budgets, analyze data, or generate

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

Casio fx-cg20. Calculator Instructions A B C D E F G. Contents:

Casio fx-cg20. Calculator Instructions A B C D E F G. Contents: Calculator Instructions Casio fx-cg20 Contents: A B C D E F G Basic functions Memory Lists Statistics Linear modelling Probability Working with functions 2 CASIO FX-CG20 A BASIC FUNCTIONS GROUPING SYMBOLS

More information

Our Strategy for Learning Fortran 90

Our Strategy for Learning Fortran 90 Our Strategy for Learning Fortran 90 We want to consider some computational problems which build in complexity. evaluating an integral solving nonlinear equations vector/matrix operations fitting data

More information

Getting Started in L A TEX

Getting Started in L A TEX Getting Started in L A TEX Roy Martinez Tuesday May 7th, 2008 1 Welcome to L A TEX Welcome to L A TEX, this guide is designed to give you a quick crash course introduction to this great formating tool.

More information

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

Helen Cameron. A Brief Overview of LATEX

Helen Cameron. A Brief Overview of LATEX A Brief Overview of L A TEX What Is L A TEX? L A TEX is a document preparation system designed by Leslie Lamport on top of Donald Knuth s TEX. Useful Websites There s a useful wikibook about L A TEX at

More information

Template and Tutorial for Math Modelers

Template and Tutorial for Math Modelers LaTeX Template and Tutorial for Math Modelers November 19, 2011 Your abstract or summary can go here. Abstract 1 Team # 123 Page 2 of 7 Contents 1 Introduction 3 2 Now You Try It 6 2.1 Assumptions......................................

More information

An Interactive Introduction to L A TEX. Part 1: The Basics. John Lees-Miller. writel A TEX

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

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Mark Baltovic MA498 - Dissertation in Mathematics Objectives of this session What is L A TEX? The L A TEX source file Inside the body of the text Typesetting mathematics Internal

More information

Skill 3 Relations and Functions

Skill 3 Relations and Functions Skill 3 Relations and Functions 3a: Use Interval and Set Notation 3b: Determine the domain and range of a relation given a set of ordered pairs, a graph, or an equation 3c: Determine whether a relation

More information

Report Template. Joe B. Student and Dan Simon * Department of Electrical and Computer Engineering Cleveland State University Cleveland, Ohio 44115

Report Template. Joe B. Student and Dan Simon * Department of Electrical and Computer Engineering Cleveland State University Cleveland, Ohio 44115 Joe B. Student and Dan Simon * Department of Electrical and Computer Engineering Cleveland State University Cleveland, Ohio 44115 May 20, 2004 Abstract Every report should have an abstract. The abstract

More information

Typesetting in wxmaxima

Typesetting in wxmaxima Typesetting in wxmaxima 1 Introduction To make your paper look as good as possible you should be familiar with the following: how to format text and create sections (and subsections, etc.), how to typeset

More information

Maple Quick Start. Maplesoft, a division of Waterloo Maple Inc.

Maple Quick Start. Maplesoft, a division of Waterloo Maple Inc. Maple Quick Start Maplesoft, a division of Waterloo Maple Inc. This tutorial is designed to help you become familiar with the Maple environment and teach you the few fundamental concepts and tools you

More information

Introduction to L A TEX

Introduction to L A TEX Introduction to L A TEX Helen Scharber 1 Introduction In this workshop, we ll be looking at how to create a basic document in L A TEXthat includes some math. There are a few important things to mention

More information

ü 1.1 Getting Started

ü 1.1 Getting Started Chapter 1 Introduction Welcome to Mathematica! This tutorial manual is intended as a supplement to Rogawski's Calculus textbook and aimed at students looking to quickly learn Mathematica through examples.

More information

Getting started with Latex

Getting started with Latex Getting started with Latex Robert G. Niemeyer University of New Mexico, Albuquerque October 15, 2012 What is Latex? Latex is a mathematical typesetting language. Essentially, when you are using Latex to

More information

AP * Calculus Review. Area and Volume

AP * Calculus Review. Area and Volume AP * Calculus Review Area and Volume Student Packet Advanced Placement and AP are registered trademark of the College Entrance Examination Board. The College Board was not involved in the production of,

More information

Electronic Production Guidelines

Electronic Production Guidelines Electronic Production Guidelines Illustrations It is a good idea to check out the draw programs you have available to you before you start drawing the figures for your article. Make sure that you can create

More information

Graphing Calculator Tutorial

Graphing Calculator Tutorial Graphing Calculator Tutorial This tutorial is designed as an interactive activity. The best way to learn the calculator functions will be to work the examples on your own calculator as you read the tutorial.

More information

Full file at

Full file at Java Programming: From Problem Analysis to Program Design, 3 rd Edition 2-1 Chapter 2 Basic Elements of Java At a Glance Instructor s Manual Table of Contents Overview Objectives s Quick Quizzes Class

More information

ADVANCED TECHNIQUES FOR EQUATION EDITOR AND MATHTYPE USERS. Presented by: Bob Mathews Director of Training

ADVANCED TECHNIQUES FOR EQUATION EDITOR AND MATHTYPE USERS. Presented by: Bob Mathews Director of Training ADVANCED TECHNIQUES FOR EQUATION EDITOR AND MATHTYPE USERS Presented by: Bob Mathews Director of Training Email: bobm@dessci.com This handout is also available on the Web at http://www.dessci.com/handouts

More information

L A TEX: Online module 2

L A TEX: Online module 2 L A TEX: Online module 2 Venkata Manem Univ. of Waterloo July 22, 2011 Venkata Manem (Univ. of Waterloo) LATEX: Online module 2 July 22, 2011 1 / 28 Topics to be covered Typeface Font size Special characters

More information

Computer Programming : C++

Computer Programming : C++ The Islamic University of Gaza Engineering Faculty Department of Computer Engineering Fall 2017 ECOM 2003 Muath i.alnabris Computer Programming : C++ Experiment #1 Basics Contents Structure of a program

More information

Introduction to Mathcad

Introduction to Mathcad CHAPTER 1 Introduction to Mathcad Mathcad is a product of MathSoft inc. The Mathcad can help us to calculate, graph, and communicate technical ideas. It lets us work with mathematical expressions using

More information

1 Short Answer. Math 4242 Grenfell Campus Fall 2017 Final Exam. There are 100 marks available. Attempt all questions.

1 Short Answer. Math 4242 Grenfell Campus Fall 2017 Final Exam. There are 100 marks available. Attempt all questions. Math 4242 Grenfell Campus Fall 2017 Final Exam. There are 100 marks available. Attempt all questions. 1 Short Answer One-two sentence answer maximum! 1. (3 marks) Your implementation of binary addition

More information

9 Using Equation Networks

9 Using Equation Networks 9 Using Equation Networks In this chapter Introduction to Equation Networks 244 Equation format 247 Using register address lists 254 Setting up an enable contact 255 Equations displayed within the Network

More information

MATLAB Programming for Numerical Computation Dr. Niket Kaisare Department Of Chemical Engineering Indian Institute of Technology, Madras

MATLAB Programming for Numerical Computation Dr. Niket Kaisare Department Of Chemical Engineering Indian Institute of Technology, Madras MATLAB Programming for Numerical Computation Dr. Niket Kaisare Department Of Chemical Engineering Indian Institute of Technology, Madras Module No. #01 Lecture No. #1.1 Introduction to MATLAB programming

More information

Multiply Decimals Multiply # s, Ignore Decimals, Count # of Decimals, Place in Product from right counting in to left

Multiply Decimals Multiply # s, Ignore Decimals, Count # of Decimals, Place in Product from right counting in to left Multiply Decimals Multiply # s, Ignore Decimals, Count # of Decimals, Place in Product from right counting in to left Dividing Decimals Quotient (answer to prob), Dividend (the # being subdivided) & Divisor

More information

1 Basic Mathematical Operations

1 Basic Mathematical Operations 1 Basic Mathematical Operations Recall the basic operations of addition, substraction, multiplication, and division. Consider evaluating the following expression: 2+3 5 Do we add 2 and 3 first or do we

More information

Using MathType for the Worksheets: Word 2003 edition

Using MathType for the Worksheets: Word 2003 edition Haberman Online MTH 112 Using MathType for the Worksheets: Word 2003 edition As explained in various locations inside our course, you are required to use MathType to compose all of the mathematics in your

More information

Basic stuff -- assignments, arithmetic and functions

Basic stuff -- assignments, arithmetic and functions Basic stuff -- assignments, arithmetic and functions Most of the time, you will be using Maple as a kind of super-calculator. It is possible to write programs in Maple -- we will do this very occasionally,

More information

L A TEX - First Class

L A TEX - First Class L A TEX - First Class Siri Isaksson November 4, 2010 Abstract In this first class, we will go over some of the most useful features of Latex, most of the examples of how to use them stem from the Not so

More information

How to Make Graphs with Excel 2007

How to Make Graphs with Excel 2007 Appendix A How to Make Graphs with Excel 2007 A.1 Introduction This is a quick-and-dirty tutorial to teach you the basics of graph creation and formatting in Microsoft Excel. Many of the tasks that you

More information

Arithmetic expressions can be typed into Maple using the regular operators:

Arithmetic expressions can be typed into Maple using the regular operators: Basic arithmetic Arithmetic expressions can be typed into Maple using the regular operators: (type "3 + 4" and then press "[Enter]" to start the evaluation of the expression) 7 (1.1) 5 (1.2) 21 (1.3) (type

More information

Only to be used for arranged hours. Order of Operations

Only to be used for arranged hours. Order of Operations Math 84 Activity # 1 Your name: Order of Operations Goals: 1) Evaluate Real numbers with Exponents. ) Use the Order of Operations to Evaluate Expressions. ) Review Exponents and Powers of Ten Integer exponents

More information

1 Introduction to Matlab

1 Introduction to Matlab 1 Introduction to Matlab 1. What is Matlab? Matlab is a computer program designed to do mathematics. You might think of it as a super-calculator. That is, once Matlab has been started, you can enter computations,

More information

,!7IA3C1-cjfcei!:t;K;k;K;k ISBN Graphing Calculator Reference Card. Addison-Wesley s. Basics. Created in conjuction with

,!7IA3C1-cjfcei!:t;K;k;K;k ISBN Graphing Calculator Reference Card. Addison-Wesley s. Basics. Created in conjuction with Addison-Wesley s Graphing Calculator Reference Card Created in conjuction with Basics Converting Fractions to Decimals The calculator will automatically convert a fraction to a decimal. Type in a fraction,

More information

Graphics calculator instructions

Graphics calculator instructions Graphics calculator instructions Contents: A Basic calculations B Basic functions C Secondary function and alpha keys D Memory E Lists F Statistical graphs G Working with functions H Two variable analysis

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

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 3: SEP. 13TH INSTRUCTOR: JIAYIN WANG

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 3: SEP. 13TH INSTRUCTOR: JIAYIN WANG CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 3: SEP. 13TH INSTRUCTOR: JIAYIN WANG 1 Notice Reading Assignment Chapter 1: Introduction to Java Programming Homework 1 It is due this coming Sunday

More information

1. The Joy of TEX. Check out this example!

1. The Joy of TEX. Check out this example! 1. The Joy of TEX 1. TEX is typesetting language for scientific documents. It is incredibly customizable and allows you define your own styles, shortcuts, etc, so that it rapidly becomes a time-saver.

More information

Part - I : Short Course Typing Text

Part - I : Short Course Typing Text Part - I : Short Course Sanjay Mishra Department of Mathematics Lovely Professional University Punjab, India June 14, 2012 Outline 1 Introduction The Keyboard Your First Note Lines too Wide More Text Features

More information

LAB 1 General MATLAB Information 1

LAB 1 General MATLAB Information 1 LAB 1 General MATLAB Information 1 General: To enter a matrix: > type the entries between square brackets, [...] > enter it by rows with elements separated by a space or comma > rows are terminated by

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

9. Elementary Algebraic and Transcendental Scalar Functions

9. Elementary Algebraic and Transcendental Scalar Functions Scalar Functions Summary. Introduction 2. Constants 2a. Numeric Constants 2b. Character Constants 2c. Symbol Constants 2d. Nested Constants 3. Scalar Functions 4. Arithmetic Scalar Functions 5. Operators

More information

Objectives. Materials

Objectives. Materials Activity 13 Objectives Understand what a slope field represents in terms of Create a slope field for a given differential equation Materials TI-84 Plus / TI-83 Plus Graph paper Introduction One of the

More information

LATEX Workshop. Yi Liu Chen SUNY Geneseo PRISM Math Club. February 6, Wordmark Reversed Geneseo Wordmark Style Guide 4

LATEX Workshop. Yi Liu Chen SUNY Geneseo PRISM Math Club. February 6, Wordmark Reversed Geneseo Wordmark Style Guide 4 Yi Liu Chen SUNY Geneseo PRISM Math Club February 6, 2019 Outline L A TEX Environment The Basics Mathematics SUNY Geneseo PRISM Math Club 2 BDA/MBS and Math/Physics People People taking BDA (BIOL250) or

More information

Chapter 2, Part I Introduction to C Programming

Chapter 2, Part I Introduction to C Programming Chapter 2, Part I Introduction to C Programming C How to Program, 8/e, GE 2016 Pearson Education, Ltd. All rights reserved. 1 2016 Pearson Education, Ltd. All rights reserved. 2 2016 Pearson Education,

More information

Euler s Method for Approximating Solution Curves

Euler s Method for Approximating Solution Curves Euler s Method for Approximating Solution Curves As you may have begun to suspect at this point, time constraints will allow us to learn only a few of the many known methods for solving differential equations.

More information

Exam 1 Review. MATH Intuitive Calculus Fall Name:. Show your reasoning. Use standard notation correctly.

Exam 1 Review. MATH Intuitive Calculus Fall Name:. Show your reasoning. Use standard notation correctly. MATH 11012 Intuitive Calculus Fall 2012 Name:. Exam 1 Review Show your reasoning. Use standard notation correctly. 1. Consider the function f depicted below. y 1 1 x (a) Find each of the following (or

More information

Mathematica Assignment 1

Mathematica Assignment 1 Math 21a: Multivariable Calculus, Fall 2000 Mathematica Assignment 1 Support Welcome to this Mathematica computer assignment! In case of technical problems with this assignment please consult first the

More information

What is LaTeX. Is a document markup language and document preparation system for the TeX typesetting program

What is LaTeX. Is a document markup language and document preparation system for the TeX typesetting program What is LaTeX LaTeX ( /ˈleɪtɛk/, /ˈleɪtɛx/, /ˈlɑːtɛx/, or /ˈlɑːtɛk/) Is a document markup language and document preparation system for the TeX typesetting program Refers only to the language, not to the

More information

Getting Started Guide Chapter 9 Getting Started with Math

Getting Started Guide Chapter 9 Getting Started with Math Getting Started Guide Chapter 9 Getting Started with Math OpenOffice.org s Equation Editor Copyright This document is Copyright 2005 2010 by its contributors as listed below. You may distribute it and/or

More information

6.1 Evaluate Roots and Rational Exponents

6.1 Evaluate Roots and Rational Exponents VOCABULARY:. Evaluate Roots and Rational Exponents Radical: We know radicals as square roots. But really, radicals can be used to express any root: 0 8, 8, Index: The index tells us exactly what type of

More information

Mikkel Madsen

Mikkel Madsen Mikkel Madsen latex@mikkl.dk After completing this course, you: Have an understanding of what LaTeX is Have an idea of what things can be easily accomplished in LaTeX Know where to look for help DON T

More information

Section 1.2 Fractions

Section 1.2 Fractions Objectives Section 1.2 Fractions Factor and prime factor natural numbers Recognize special fraction forms Multiply and divide fractions Build equivalent fractions Simplify fractions Add and subtract fractions

More information

NOTES ON MATHEMATICAL TYPING

NOTES ON MATHEMATICAL TYPING NOTES ON MATHEMATICAL TYPING MICHAEL COWLING Having written many mathematical papers, refereed hundreds of them, and been an editor of a journal, I have seen many reports from many referees. This is a

More information

MITOCW watch?v=kz7jjltq9r4

MITOCW watch?v=kz7jjltq9r4 MITOCW watch?v=kz7jjltq9r4 PROFESSOR: We're going to look at the most fundamental of all mathematical data types, namely sets, and let's begin with the definitions. So informally, a set is a collection

More information