Introduction to Sequences in Maple (Classic Version for Windows)

Size: px
Start display at page:

Download "Introduction to Sequences in Maple (Classic Version for Windows)"

Transcription

1 Introduction to Sequences in Maple (Classic Version for Windows) Author: Barbara Forrest Contact: Copyrighted/NOT FOR RESALE version 1.1 Contents 1 Objectives for this Lab ii 2 Helpful Hints for using Maple ii 3 Manipulating Expressions in Maple iii 4 Generating the Terms of a Sequence in Maple iv 5 Plotting the Terms of a Sequence in Maple v 6 Finding the Limit of a Sequence in Maple vi 7 Practice Exercises vii i

2 1 Objectives for this Lab Review the contents of A Short Introduction to Maple. Read about helpful hints for using Maple. Learn how to expand, factor, and solve expressions in Maple. Listing the terms of a sequence in Maple. Plotting the terms of a sequence in Maple. Finding the limit of a sequence in Maple. 2 Helpful Hints for using Maple What to do when things go wrong? You have seen 1 that the [> restart: command tells Maple to clear its memory. It is always a good idea to begin a worksheet with this command. If you ever find that you are entering commands within a worksheet, but Maple is either returning what seems to be incorrect answers or is doing nothing, the best action to take is to enter the restart command again. Also, if you find that Maple is taking too long to do a calculation or that you want Maple to stop performing a calculation, click the Stop icon found in the toolbar. In some versions of Maple, the Stop icon may appear as. If these methods do not work, save your work (if possible), quit Maple and restart the Maple program to continue working. To avoid any loss of work, you should save your worksheet often. Start Maple CLASSIC version. Begin a new worksheet by entering the restart: command. Avoiding too much typing? One of the drawbacks of using the CLASSIC version of Maple is that commands must be typed at the command prompt. 2 To avoid too much typing, remember to use copy and paste. Enter the following command at a Maple prompt: [> 2 8*(sqrt(3) + sin(pi/4)); Once you have entered this expression, you realize that instead you wanted to use 5. You could retype the command at the next Maple prompt. However, a faster method is to copy and paste the expression, and then edit. 1. Use your mouse to select the expression above, 2 8*(sqrt(3) + sin(pi/4)); (i.e., click and drag to highight the expression). 2. From the Edit menu, choose Copy (or alternatively, press CTRL + C on your keyboard). 1 Review the document entitled A Short Introduction to Maple if you haven t already. 2 Recall that the Standard version of Maple uses an enhanced worksheet with many user-friendly tools. However, the Classic version uses less computer memory. See?versions for more information. ii

3 3. Click your mouse cursor beside the next available Maple prompt. 4. From the Edit menu, choose Paste (or alternatively, press CTRL + V on your keyboard). 5. Move the cursor to 3 and change this number to 5. Press ENTER. You should copy and paste expressions whenever possible to save time. Including comments with Maple commands. In the Short Introduction to Maple you have already seen how to include a text region in a Maple worksheet. You can also include comments beside Maple commands to document your work. The number sign (#) is used to insert a comment. Enter the following at a Maple prompt and then press ENTER: [> 1/4 + 1/2; # This is my first comment. We are adding fractions. Notice that anything after the # sign is ignored by Maple. You should comment your work by using text regions and by using comments so your worksheet is easier to follow. The most common Maple CLASSIC syntax error. Maple uses the following symbols +,,, \, and for addition, substraction, multiplication, division, and exponentiation, respectively. It is a common error to forget to include the in an expression when multiplying. For example, [> 2x + 3; #This is incorrect since the * is missing. Maple returns an error. [> 2*x + 3; #This is correct. Enter both of the previous expressions to see how Maple CLASSIC reacts to a syntax error. 3 Manipulating Expressions in Maple Three tasks that are often required in algebra are expanding, factoring, and solving an expression. Expanding an expression. Suppose you wanted to expand the expression (2x 2 6x + 11)(3x 2 + 7x 12). You can easily find the answer in Maple by using the expand command. Try entering the following in Maple: [> (2*x 2-6*x + 11)*(3*x 2 + 7*x - 12); # Maple returns what you have typed. Now try using the expand command. Type the following (remember to use copy and paste to save some typing!) [> expand((2*x 2-6*x + 11)*(3*x 2 + 7*x - 12)); # Maple expands the expression by multiplying. This is much easier than doing the computation by hand! Factoring an expression. You can factor an expression using Maple s factor command. If the expression cannot be factored in Maple, the original expression is returned. Try entering the following in Maple: [> factor(8*x 3-12*x 2 + 6*x - 1); # Maple factors the expression. [> factor(8*x 3-12*x 2 + 3*x - 1); # Maple can t factor the expression. Solving an expression. Solving an expression means to find all the values of the unknown (usually the unknown is x) so that the expression is equal to 0. You can solve an expression using Maple s solve command. If the expression cannot be solved in Maple, nothing is returned. Try entering the following in Maple: iii

4 [> solve(2*x *x 2+19*x-9.6); # Maple solves the expression. Maple informs us that the values of x that will make the expression 2x x x 9.6 equal to 0 are x = 1, x = 1.5, and x = 3.2. Note that Maple uses 10 significant digits in the answer. If Maple can t solve the expression, nothing is returned. Try entering the following. [> solve(1/(x-1)); # Maple can t solve the expression. This expression can never be equal to 0 (i.e., the numerator can never be 0), so Maple returns nothing. You can even solve expressions that are inequalities in Maple. For example, solve x 2 5 < 4. Enter the following: [> solve(x 2-5 < 4); Maple returns ( 3, 3) This means the solution is the open interval from 3 to 3. In the next example, note that abs represents the absolute value of an expression and <= means less than or equal to. This time let s try to solve x 5 2. [> solve(abs(x-5) <= 2); Maple returns [3, 7] Alternately, the solution to [> solve(abs(x-5) < 2); is (3, 7) 4 Generating the Terms of a Sequence in Maple To list the terms of a sequence {a n } in Maple you must use the seq command. The general syntax for the seq command is: seq( sequence formula, n = index bounds ) For example, let a n = n2 3 n. To generate the first 10 terms of this sequence, try entering the following command in a Maple 2 worksheet: [ > seq( n 2 / (3 - n 2), n = ); Maple returns the following output: 1/2, 4, 3/2, 16/13, 25/22, 12/11, 49/46, 64/61, 27/26, 100/97 You can modify this command to include the index number of each term by using the syntax seq( [n, sequence formula ], n = index bounds ) iv

5 For example, again let a n = n2 3 n. To generate the first 10 terms of this sequence along with the index of each term, try 2 entering the following command: [ > seq( [n, n 2 / (3 - n 2)], n = ); Maple returns the following output: [1, 1/2], [2, 4], [3, 3/2], [4, 16/13], [5, 25/22], [6, 12/11], [7, 49/46], [8, 64/61], [9, 27/26], [10, 100/97] List the first 20 terms of the sequence a n = 1 n. List the first 20 terms of the sequence a n = 1 n again, but this time list each term with its index number. 5 Plotting the Terms of a Sequence in Maple Recall that you saw how to plot basic functions in the Short Introduction to Maple. The syntax to plot the terms of a sequence is similar. To plot the terms of the sequence against the index of the terms, we will use a new variable named data and the Maple plot command. Note that you do not have to use data to name the set of terms of the sequence; you can use any other name with alphanumeric characters. The general syntax to assign the label data to the sequence terms in Maple is: data := seq( [ n, sequence formula ], n = index range of data points ) Then you would enter the following command to plot each term of the sequence on the Real plane: [ > plot( [data], style = point); For example, try entering the following commands in a Maple worksheet to plot the first 10 terms: [ > data := seq( [ n, n 2 / (3 - n 2) ], n = ); [ > plot( [data], style = point ); Note that you can modify this plot command so that the terms appear as different symbols. For example, try: v

6 [ > plot( [data], style = point, symbol = circle ); The symbol option in Maple s plot command will accept asterisk, box, circle, cross, diagonalcross, diamond, point, solidbox, solidcircle, or soliddiamond. You can try another symbol type in your plot command to see how the plotted terms will appear. For example, try [ > plot( [data], style = point, symbol = solidbox ); If you are interested, see the?plot,options help page in Maple for more information about plot options in Maple. Plot the first 20 terms of the sequence a n = 1 n. Edit the previous exercise and plot the first terms of the sequence a n = 1 n. Edit the previous exercise and plot only the terms from n = 9500 to n = Hint: Use plot([seq([n,1/n],n= )],style=point); 6 Finding the Limit of a Sequence in Maple To find the limit of a sequence you can use Maple s limit command and the following syntax: limit( sequence formula, n = index bound ); For example, let a n = n2 3 n. To find lim a n, try entering the following command: 2 n [ > limit( n 2 / (3 - n 2), n = infinity ); Maple returns the limit as 1. You should check that this is the correct answer by doing the hand calculation. Calculate lim cos(n) in Maple. Consider the result. What is Maple trying to tell you? Try plotting the first 100 x terms of the sequence a n = cos(n). Does Maple s limit result match the plot? vi

7 7 Practice Exercises Complete the following exercises in a Maple worksheet and write down your answers in the space provided below. Save the worksheet as sequence.mws. Questions from these practice exercises may appear on the course assignments. 1. Create the following text input. At the top of a new Maple worksheet, type the following lines in a text region. Maple Lab : Sequences Name: ID: Date: Type your name here. Type your ID number here. Type today s date here. You can enhance the fonts in any way you wish (e.g., change the font, fontsize, bold, etc.) Insert an execution group after the last line of the text region. Enter Maple s restart: command. 2. Compute the following in Maple. Write your answers in the space beside each question. Leave your answers in symbolic form. (a) (b) (Be careful with your brackets!) (c) ( ) 1 2 (d) Compute the floating-point (decimal) approximation of the following expressions in Maple. (Hint: use the evalf command.) Write your answers in the space beside each question. (a) (b) (c) Solve the following expressions in Maple. Leave your answers in symbolic form. Write your answers in the space beside each question. (a) 2x 2 + 3x 100 (b) (x 6) (3x+4) (2x 3) (x+2) (c) 4 3x 2 5. Let a n = cos(n)2 2 n. Find the limit of this sequence in Maple. Create the plot of the first 20 terms. Did your calculated limit match the Maple plot of the sequence terms? 6. Let a n = n! 2 n. Create the plot of the first 1000 terms. Can you guess the limit of the sequence? Find the limit of this sequence in Maple. 7. (a) Let a n = cos(n 2 ). Generate the first 10 terms in Maple. Can you guess the limit of the sequence by inspecting these terms? (b) Let a n = cos(n 2 ). Create the plot of the first 1000 terms. Can you guess the limit of the sequence? Find the limit of this sequence in Maple. What is the Maple output trying to tell you? 8. Save the worksheet. Save the worksheet as sequence.mws. You may print the worksheet if you would like a copy for your notes. To print a copy of the worksheet, from the File menu, choose Print and click OK. vii

The Bisection Method versus Newton s Method in Maple (Classic Version for Windows)

The Bisection Method versus Newton s Method in Maple (Classic Version for Windows) The Bisection Method versus (Classic Version for Windows) Author: Barbara Forrest Contact: baforres@uwaterloo.ca Copyrighted/NOT FOR RESALE version 1.1 Contents 1 Objectives for this Lab i 2 Approximate

More information

Getting to Know Maple

Getting to Know Maple Maple Worksheets for rdinary Differential Equations Complimentary software to accompany the textbook: Differential Equations: Concepts, Methods, and Models (00-00 Edition) Leigh C. Becker Department of

More information

An Introduction to Maple and Maplets for Calculus

An Introduction to Maple and Maplets for Calculus An Introduction to Maple and Maplets for Calculus Douglas B. Meade Department of Mathematics University of South Carolina Columbia, SC 29208 USA URL: www.math.sc.edu/~meade e-mail: meade@math.sc.edu Philip

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

More information

Skill Set 3. Formulas

Skill Set 3. Formulas Skill Set 3 Formulas By the end of this Skill Set you should be able to: Create Simple Formulas Understand Totals and Subtotals Use Brackets Select Cells with the Mouse to Create Formulas Calculate Percentages

More information

= 3 + (5*4) + (1/2)*(4/2)^2.

= 3 + (5*4) + (1/2)*(4/2)^2. Physics 100 Lab 1: Use of a Spreadsheet to Analyze Data by Kenneth Hahn and Michael Goggin In this lab you will learn how to enter data into a spreadsheet and to manipulate the data in meaningful ways.

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Laboratory 1. Part 1: Introduction to Spreadsheets

Laboratory 1. Part 1: Introduction to Spreadsheets Laboratory 1 Part 1: Introduction to Spreadsheets By the end of this laboratory session you should be familiar with: Navigating around a worksheet. Naming sheets and cells. Formatting. The use of formulae.

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

Within the spreadsheet, columns are labeled with letters and rows are labeled with numbers.

Within the spreadsheet, columns are labeled with letters and rows are labeled with numbers. Excel Exercise 1: Goals: 1. Become familiar with Guidelines for spans and proportions of common spanning members (Chapter 1). 2. Become familiar with basic commands in Excel for performing simple tasks

More information

Basics: How to Calculate Standard Deviation in Excel

Basics: How to Calculate Standard Deviation in Excel Basics: How to Calculate Standard Deviation in Excel In this guide, we are going to look at the basics of calculating the standard deviation of a data set. The calculations will be done step by step, without

More information

INDEX INTRODUCTION...1

INDEX INTRODUCTION...1 Welcome to Maple Maple is a comprehensive computer system for advanced mathematics. It includes facilities for interactive algebra, pre-calculus, calculus, discrete mathematics, graphics, numerical computation

More information

Section 1: Numerical Calculations

Section 1: Numerical Calculations Section 1: Numerical Calculations In this section you will use Maple to do some standard numerical calculations. Maple's ability to produce exact answers in addition to numerical approximations gives you

More information

Getting Started With Excel

Getting Started With Excel Chapter 1 Getting Started With Excel This chapter will familiarize you with various basic features of Excel. Specific features which you need to solve a problem will be introduced as the need arises. When

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

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

,!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

Dr Richard Greenaway

Dr Richard Greenaway SCHOOL OF PHYSICS, ASTRONOMY & MATHEMATICS 4PAM1008 MATLAB 2 Basic MATLAB Operation Dr Richard Greenaway 2 Basic MATLAB Operation 2.1 Overview 2.1.1 The Command Line In this Workshop you will learn how

More information

Excel Basics: Working with Spreadsheets

Excel Basics: Working with Spreadsheets Excel Basics: Working with Spreadsheets E 890 / 1 Unravel the Mysteries of Cells, Rows, Ranges, Formulas and More Spreadsheets are all about numbers: they help us keep track of figures and make calculations.

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

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents

In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents In this section you will learn some simple data entry, editing, formatting techniques and some simple formulae. Contents Section Topic Sub-topic Pages Section 2 Spreadsheets Layout and Design S2: 2 3 Formulae

More information

Activity 1 Creating a simple gradebook

Activity 1 Creating a simple gradebook Activity 1 Creating a simple gradebook 1 Launch Excel to start a new spreadsheet a. Click on the Excel icon to start a new workbook, either from the start menu, Office Toolbar, or an Excel icon on the

More information

Let s start by examining an Excel worksheet for the linear programming. Maximize P 70x 120y. subject to

Let s start by examining an Excel worksheet for the linear programming. Maximize P 70x 120y. subject to Excel is a useful tool for solving linear programming problems. In this question we ll solve and analyze our manufacturing problem with Excel. Although this problem can easily be solved graphically or

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

Formulas Learn how to use Excel to do the math for you by typing formulas into cells.

Formulas Learn how to use Excel to do the math for you by typing formulas into cells. Microsoft Excel 2007: Part III Creating Formulas Windows XP Microsoft Excel 2007 Microsoft Excel is an electronic spreadsheet program. Electronic spreadsheet applications allow you to type, edit, and print

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Introduction to Basic eactivity Manipulations

Introduction to Basic eactivity Manipulations for Version 3 Basic Edition Lesson 5 Introduction to Basic eactivity Manipulations Welcome In this lesson, we will learn how to use the most unique application on the ClassPad: eactivity. Within the eactivity

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

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to only certain types of people while others have

More information

Standardized Tests: Best Practices for the TI-Nspire CX

Standardized Tests: Best Practices for the TI-Nspire CX The role of TI technology in the classroom is intended to enhance student learning and deepen understanding. However, efficient and effective use of graphing calculator technology on high stakes tests

More information

Maple Quick Start. Introduction. Talking to Maple

Maple Quick Start. Introduction. Talking to Maple Maple Quick Start Maplesoft, a division of Waterloo Maple Inc. 2008. All rights reserved. This product and content is protected by copyright. You may not copy, modify, transmit or reproduce this content

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

An Introduction to Basic ClassPad Manipulations and eactivity

An Introduction to Basic ClassPad Manipulations and eactivity An Introduction to Basic ClassPad Manipulations and eactivity The pen is here. Introduction to the Main Application I. Inputting/Editing Calculations II. Drag and Drop III. Inputting an Equation IV. Inserting

More information

MATLAB Project: Getting Started with MATLAB

MATLAB Project: Getting Started with MATLAB Name Purpose: To learn to create matrices and use various MATLAB commands for reference later MATLAB built-in functions used: [ ] : ; + - * ^, size, help, format, eye, zeros, ones, diag, rand, round, cos,

More information

EXCEL PRACTICE 5: SIMPLE FORMULAS

EXCEL PRACTICE 5: SIMPLE FORMULAS EXCEL PRACTICE 5: SIMPLE FORMULAS SKILLS REVIEWED: Simple formulas Printing with and without formulas Footers Widening a column Putting labels and data in Bold. PART 1 - DIRECTIONS 1. Open a new spreadsheet

More information

Graded Project. Microsoft Excel

Graded Project. Microsoft Excel Graded Project Microsoft Excel INTRODUCTION 1 PROJECT SCENARIO 2 CREATING THE WORKSHEET 2 GRAPHING YOUR RESULTS 4 INSPECTING YOUR COMPLETED FILE 6 PREPARING YOUR FILE FOR SUBMISSION 6 Contents iii Microsoft

More information

Basic Microsoft Excel Skills

Basic Microsoft Excel Skills Basic Microsoft Excel Skills Note : This tutorial is based upon Microsoft Excel 2000. If you are using MSExcel 1997 or 2002, there may be some operations which look slightly different (e.g. graphs), but

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

YOGYAKARTA STATE UNIVERSITY MATHEMATICS AND NATURAL SCIENCES FACULTY MATHEMATICS EDUCATION STUDY PROGRAM

YOGYAKARTA STATE UNIVERSITY MATHEMATICS AND NATURAL SCIENCES FACULTY MATHEMATICS EDUCATION STUDY PROGRAM YOGYAKARTA STATE UNIVERSITY MATHEMATICS AND NATURAL SCIENCES FACULTY MATHEMATICS EDUCATION STUDY PROGRAM TOPIC 1 INTRODUCING SOME MATHEMATICS SOFTWARE (Matlab, Maple and Mathematica) This topic provides

More information

Beginning Excel for Windows

Beginning Excel for Windows Beginning Excel for Windows Version: 2002 Academic Computing Support Information Technology Services Tennessee Technological University September 2003 1. Opening Excel for Windows and Setting the Toolbars

More information

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

More information

MATLAB Project: Getting Started with MATLAB

MATLAB Project: Getting Started with MATLAB Name Purpose: To learn to create matrices and use various MATLAB commands for reference later MATLAB functions used: [ ] : ; + - * ^, size, help, format, eye, zeros, ones, diag, rand, round, cos, sin,

More information

Choose the file menu, and select Open. Input to be typed at the Maple prompt. Output from Maple. An important tip.

Choose the file menu, and select Open. Input to be typed at the Maple prompt. Output from Maple. An important tip. MAPLE Maple is a powerful and widely used mathematical software system designed by the Computer Science Department of the University of Waterloo. It can be used for a variety of tasks, such as solving

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

Introduction to Classic Maple by David Maslanka

Introduction to Classic Maple by David Maslanka Introduction to Classic Maple by David Maslanka Maple is a computer algebra system designed to do mathematics. Symbolic, numerical and graphical computations can all be done with Maple. Maple's treatment

More information

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

Introduction to Excel

Introduction to Excel Office Button, Tabs and Ribbons Office Button The File menu selection located in the upper left corner in previous versions of Excel has been replaced with the Office Button in Excel 2007. Clicking on

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

C1M0 Introduction to Maple Assignment Format C1M1 C1M1 Midn John Doe Section 1234 Beginning Maple Syntax any

C1M0 Introduction to Maple Assignment Format C1M1 C1M1 Midn John Doe Section 1234 Beginning Maple Syntax any CM0 Introduction to Maple Our discussion will focus on Maple 6, which was developed by Waterloo Maple Inc. in Waterloo, Ontario, Canada. Quoting from the Maple 6 Learning Guide, Maple is a Symbolic Computation

More information

5.7 Solving Linear Inequalities

5.7 Solving Linear Inequalities 5.7 Solving Linear Inequalities Objectives Inequality Symbols Graphing Inequalities both simple & compound Understand a solution set for an inequality Solving & Graphing a Simple Linear Inequality Solving

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

The toolbars at the top are the standard toolbar and the formatting toolbar.

The toolbars at the top are the standard toolbar and the formatting toolbar. Lecture 8 EXCEL Excel is a spreadsheet (all originally developed for bookkeeping and accounting). It is very useful for any mathematical or tabular operations. It allows you to make quick changes in input

More information

UW Department of Chemistry Lab Lectures Online

UW Department of Chemistry Lab Lectures Online Introduction to Excel and Computer Manipulation of Data Review Appendix A: Introduction to Statistical Analysis. Focus on the meanings and implications of the calculated values and not on the calculations.

More information

MOVING AND COPYING DATA...

MOVING AND COPYING DATA... Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS... 6 BASIC EXCEL REVIEW... 6 ENTERING FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references... 7 Using a simple cell

More information

Civil Engineering Computation

Civil Engineering Computation Civil Engineering Computation First Steps in VBA Homework Evaluation 2 1 Homework Evaluation 3 Based on this rubric, you may resubmit Homework 1 and Homework 2 (along with today s homework) by next Monday

More information

Graded Project. Microsoft Excel

Graded Project. Microsoft Excel Graded Project Microsoft Excel INTRODUCTION 1 PROJECT SCENARIO 1 CREATING THE WORKSHEET 2 GRAPHING YOUR RESULTS 4 INSPECTING YOUR COMPLETED FILE 6 PREPARING YOUR FILE FOR SUBMISSION 6 Contents iii Microsoft

More information

Intermediate Microsoft Excel (Demonstrated using Windows XP) Using Spreadsheets in the Classroom

Intermediate Microsoft Excel (Demonstrated using Windows XP) Using Spreadsheets in the Classroom (Demonstrated using Windows XP) Using Spreadsheets in the Classroom Adapted from Taskstream Word Tutorial (2003) < http://www.taskstream.com > Updated 4/05 by Dr. Bruce Ostertag What Can Microsoft Excel

More information

Beginning Excel. Revised 4/19/16

Beginning Excel. Revised 4/19/16 Beginning Excel Objectives: The Learner will: Become familiar with terminology used in Microsoft Excel Create a simple workbook Write a simple formula Formatting Cells Adding Columns Borders Table of Contents:

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

Maple for Math Majors. 12. Data Structures in Maple

Maple for Math Majors. 12. Data Structures in Maple Maple for Math Majors Roger Kraft Department of Mathematics, Computer Science, and Statistics Purdue University Calumet roger@calumet.purdue.edu 12.1. Introduction 12. Data Structures in Maple We have

More information

Is the statement sufficient? If both x and y are odd, is xy odd? 1) xy 2 < 0. Odds & Evens. Positives & Negatives. Answer: Yes, xy is odd

Is the statement sufficient? If both x and y are odd, is xy odd? 1) xy 2 < 0. Odds & Evens. Positives & Negatives. Answer: Yes, xy is odd Is the statement sufficient? If both x and y are odd, is xy odd? Is x < 0? 1) xy 2 < 0 Positives & Negatives Answer: Yes, xy is odd Odd numbers can be represented as 2m + 1 or 2n + 1, where m and n are

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Writing Formulae with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 2.0 TUT 47 UNIVERSITY OF LEEDS

More information

Word 2008 for Mac: Forms Learning Guide

Word 2008 for Mac: Forms Learning Guide Word 2008 for Mac: Forms Learning Guide Why Use Word Forms? If you have ever worked on a project that involves collecting data from a group of people, you have probably designed a form using Word. Although

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

Quickstart for Desktop Version

Quickstart for Desktop Version Quickstart for Desktop Version What is GeoGebra? Dynamic Mathematics Software in one easy-to-use package For learning and teaching at all levels of education Joins interactive 2D and 3D geometry, algebra,

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

MOVING FROM CELL TO CELL

MOVING FROM CELL TO CELL VCAE: EXCEL Lesson 1 Please send comments to Author: Zahra Siddiqui at zed_ess@hotmail.com Concepts Covered: Cell Address; Cell Pointer; Moving across Cells Constants: Entering, Editing, Formatting Using

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Your First Windows Form

Your First Windows Form Your First Windows Form From now on, we re going to be creating Windows Forms Applications, rather than Console Applications. Windows Forms Applications make use of something called a Form. The Form is

More information

Spreadsheet Concepts Using Microsoft Excel

Spreadsheet Concepts Using Microsoft Excel Spreadsheet Concepts Using Microsoft Excel lab 5 Objectives: Upon successful completion of Lab 5, you will be able to Create and edit a simple spreadsheet document Describe the advantage of using formulas

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

Introduction to CS Dealing with tables in Word Jacek Wiślicki, Laurent Babout,

Introduction to CS Dealing with tables in Word Jacek Wiślicki, Laurent Babout, Most word processors offer possibility to draw and format even very sophisticated tables. A table consists of rows and columns, forming cells. Cells can be split and merged together. Content of each cell

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

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

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

CHAPTER 1 GETTING STARTED

CHAPTER 1 GETTING STARTED GETTING STARTED WITH EXCEL CHAPTER 1 GETTING STARTED Microsoft Excel is an all-purpose spreadsheet application with many functions. We will be using Excel 97. This guide is not a general Excel manual,

More information

CMPF124 Microsoft Excel Tutorial

CMPF124 Microsoft Excel Tutorial Lab 5: Microsoft Excel Tutorial Excel Worksheet Microsoft Excel works as account ledger. An Excel Workbook (1) could have multiple Worksheets (2). A cell in Excel is referred by its Column and Row naming

More information

MICROSOFT WORD. Table of Contents. What is MSWord? Features LINC TWO

MICROSOFT WORD. Table of Contents. What is MSWord? Features LINC TWO Table of Contents What is MSWord? MS Word is a word-processing program that allows users to create, edit, and enhance text in a variety of formats. Word is a powerful word-processor with sophisticated

More information

Using Formulas and Functions

Using Formulas and Functions Using Formulas and Functions Formulas... 1 Using operators in formulas... 1 Creating formulas... 2 Good Practice: The easy way to create formulas... 2 Copying formulas... 3 Operators... 3 Formula error

More information

Pre-Lab Excel Problem

Pre-Lab Excel Problem Pre-Lab Excel Problem Read and follow the instructions carefully! Below you are given a problem which you are to solve using Excel. If you have not used the Excel spreadsheet a limited tutorial is given

More information

Introduction to the workbook and spreadsheet

Introduction to the workbook and spreadsheet Excel Tutorial To make the most of this tutorial I suggest you follow through it while sitting in front of a computer with Microsoft Excel running. This will allow you to try things out as you follow along.

More information

Lesson 3: Solving Equations; Floating-point Computation

Lesson 3: Solving Equations; Floating-point Computation Lesson 3: Solving Equations; Floating-point Computation restart; A hard equation Last time we were looking at this equation. eq := * sin() = Pi/2; (1.1) Maple didn't know the solutions. solve(eq,,allsolutions);

More information

Basic Microsoft Excel 2011

Basic Microsoft Excel 2011 Basic Microsoft Excel 2011 Table of Contents Starting Excel... 2 Creating a New Workbook... 3 Saving a Workbook... 3 Creating New Worksheets... 3 Renaming a Worksheet... 3 Deleting a Worksheet... 3 Selecting

More information

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions

Microsoft Office Excel Use Excel s functions. Tutorial 2 Working With Formulas and Functions Microsoft Office Excel 2003 Tutorial 2 Working With Formulas and Functions 1 Use Excel s functions You can easily calculate the sum of a large number of cells by using a function. A function is a predefined,

More information

Software Reference Sheet: Inserting and Organizing Data in a Spreadsheet

Software Reference Sheet: Inserting and Organizing Data in a Spreadsheet Inserting and formatting text Software Reference Sheet: Inserting and Organizing Data in a Spreadsheet Column headings are very important to include in your spreadsheet so that you can remember what the

More information

The Mathcad Workspace 7

The Mathcad Workspace 7 For information on system requirements and how to install Mathcad on your computer, refer to Chapter 1, Welcome to Mathcad. When you start Mathcad, you ll see a window like that shown in Figure 2-1. By

More information

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide

VBA Excel 2013/2016. VBA Visual Basic for Applications. Learner Guide VBA Visual Basic for Applications Learner Guide 1 Table of Contents SECTION 1 WORKING WITH MACROS...5 WORKING WITH MACROS...6 About Excel macros...6 Opening Excel (using Windows 7 or 10)...6 Recognizing

More information

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Objectives: 1. To learn how to interpret scatterplots. Specifically you will investigate, using

More information

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button.

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button. Word 2007 There are a lot of new changes to Office 2007. This handout will provide a few examples on how to do basic formatting. If at any point you get stuck, remember that Office has a feature that allows

More information

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

More information

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

Introduction to Matlab

Introduction to Matlab Introduction to Matlab Kristian Sandberg Department of Applied Mathematics University of Colorado Goal The goal with this worksheet is to give a brief introduction to the mathematical software Matlab.

More information

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets.

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets. Agenda Unit 1 Assessment Review Progress Reports Intro to Excel Learn parts of an Excel spreadsheet How to Plan a spreadsheet Create a spreadsheet Analyze data Create an embedded chart in spreadsheet In

More information

if you have anything on the screen you can clear it by pressing: CLEAR

if you have anything on the screen you can clear it by pressing: CLEAR Graphing Calculators are really very powerful hand held computing devices. The allow mathematics problems to be investigated by those whose learning styles range from the symbolic to the visual to the

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

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