SAMPLE. Computer Algebra System (TI calculators)

Size: px
Start display at page:

Download "SAMPLE. Computer Algebra System (TI calculators)"

Transcription

1 A P P E N D I X B B1 Computer Algebra System (TI calculators) Introduction This appendix is written for use with TI calculators. Much of this material is also relevant to the use of other calculators with a computer algebra facility. The TI calculators include the TI-89, TI-89 Titanium, the TI-92 and TI-92 plus, and the Voyage. The screen dumps are from a TI-89 or TI-89 Titanium. The home screen is as shown. It is the default screen when the calculator is first turned on. It can always be reached by pressing the button HOME or 2ND QUIT. The use of the 2ND keyisvery similar to its use with the TI-83. The screen can be made lighter or darker by pressing 2ND and holding down to make it darker, or to make it lighter. At the top of the home screen a toolbar appears. Options are labelled F1 to F6. Different screens have different toolbars. To view one of the submenus, press the corresponding key from the top row of keys. F6 is obtained from pressing 2ND F1. The following steps are useful to perform if the calculator has been used previously and you are unsure of what has been stored in various memory locations. Choose F6 and then choose 1:Clear a-z by selecting and pressing ENTER. This clears the memory locations a to z. Return to the F6 menu and select 2:New Prob. NewProb appears in the entry line of the home screen. Press ENTER again. This clears the home screen and turns off any user-defined functions or stat plots. The home screen can be cleared at anytime by choosing 8:Clear Home from the F1 menu. 703

2 704 Essential Mathematical Methods 3&4CAS Executing commands in the home screen New commands are entered in the entry line. Asnew commands are entered in the entry line the old commands and answers scroll up. These can be accessed with the up and down arrow keys. The mode settings may be changed through the MODE menu. For the screen shown to the right the settings shown are: Graph...FUNCTION Angle...RADIAN Exact/Approx...AUTO mode settings entry line The 3/30 in the bottom right-hand corner of the screen informs the user that three calculations have been made. The label MAIN to the left of the screen refers to the folder being used. This option is not referred to in this chapter. To change the mode EXACT/APPROX, press MODE and then F2 to get to the second page of the MODE menu. Use the down arrow to go to AUTO, use the right arrow to see the submenu and select 2:EXACT. Press ENTER twice. Press ENTER again and note that has been recalculated in EXACT mode. When in EXACT mode you can press (GREEN mode) to obtain approximations. Errors, deleting and editing expressions and answers An error message appears if an expression is entered with incorrect format.

3 Appendix B Computer Algebra System (TI calculators) 705 B2 Press ESC to return to the entry line. Errors are deleted by using the back arrow key. The whole entry can be deleted using CLEAR. The clear button can be used to clear other expressions and the corresponding answers anywhere in the home screen. Expressions in the home screen can be reached and selected in the home screen by using or, and then ENTER. This returns the expression to the entry line and modifications can be made. The following sequence of screens illustrates how to paste from the upper section of the home screen for the purpose of editing or using a simplified expression. Note that the calculator is still in EXACT mode. Enter expression and press ENTER. Use the up arrow to select answer. Press ENTER to have answer in entry line. The expression can be modified. Using the Algebra menu (F2) In this section the algebra menu is explored. You may work through this to become acquainted with the menu. The entire menu is as shown in these two screens. It is important that the user is aware of any variables which have been assigned values. This can be done by pressing 2ND VAR-LINK.For this machine the number 5 has been assigned to the variable x. This is done in the entry line by 5 x. The variable x has this value until some action is taken. Press and to undo the assignment.

4 706 Essential Mathematical Methods 3&4CAS Operations in the Algebra menu 1:solve( This is used to solve equations, simultaneous equations and also linear inequations. There are buttons for x, y, z and t; other letters may be accessed using the ALPHA button. Youmay need to use the 2ND button to access other operators, e.g., press 2ND MATH and find and in the 8:Test sub-menu. Forexample: solve(a x + b = 0, x) results in x = b a solve(x 2 + x 1 = 0, x) results in x = ( 5 + 1) or x = 2 Note: It is necessary to use in the expression a x + b as ax without the operator is read as a new variable. solve(a b t w + t = w (ab + 1)t t, w) results in w = t + 1 solve(x 3 x 2 x + 1 = 0, x) results in x = 1orx = 1 solve(2x + 2 < 3, x) results in x < ( 2 3) 2 solve(2x + 3y = 6 and x y = 1, {x, y}) results in x = 9 5 and y = 4 5 Note: There is no requirement to use between the 2 and x. 2:factor( This command is used for factorisation. Factorisation over the rational numbers is obtained by implementing the command without the separate designation of the variable. Forexample: to factorise x 3 2x over the rational numbers, the command is factor(x 3 2x). to factorise over the real numbers, the command is factor(x 3 2x, x). Some further examples are provided here. The results are shown on the given screens. factor(a 2 b 2 ) factor(a ( 3 b 3 ) ) 2 factor x (x 1) + 1 2

5 Appendix B Computer Algebra System (TI calculators) 707 factor(2x 4 x 2 ) factor(2x 4 x 2, x) The factor command can also be used to give the prime decomposition of integers. 3:expand( This command is used in the expansion of expressions. Forexample: expand((a + b) 3 ) expand((a + 2b) 2 ) In the following, storing an expression to a memory location will also be utilised. If the name of a variable is given as the second argument, then the expansion will be given in decreasing powers of that variable. Store (x + y) 3 to memory location d and then expand without, and then with, a designated variable. The expand command can also be used to form partial fractions. Forexample: ( ) 1 expand x 2 1 ( x 3 ) + 2x + 1 expand x 2 1 Sometimes extra conditions are required for the expansion to be carried out as expected.

6 708 Essential Mathematical Methods 3&4CAS Forexample: expand((a x ) b )gives the correct result only if a is stated to be positive. expand(ln(a*b)) does not result in the expected ln(a) + ln(b). It requires the condition a > 0or b > 0tobestated. It also works if both a and b are stated to be positive. 4:zeros( This command solves an equation where one side of the equation is zero. The variable must be named. The answer is given as a list. zeros(x 2 1, x) zeros(x 2 y 2, x) zeros(x 2 y 2, y) zeros(x 2 y, y) zeros(x 2 4x + 8, x) zeros(x 2 4x + 1, x) zeros(x 2 4x + 4, x) 5:approx( Nosolutions Two solutions One solution Using this command is equivalent to choosing APPROXIMATE from the Exact/Approx submenu of the MODE menu. When in EXACT mode you can also press (GREEN mode) to obtain approximations. 6:comDenom( This gives an expression with common denominator and in simplified ratio form. The screens demonstrate the use of this command. 7:propFrac( This command changes a fractional expression to a proper fraction form.

7 Appendix B Computer Algebra System (TI calculators) 709 B3 8:nSolve( This gives numerical solutions to equations. It will return only one solution. The syntax is nsolve(equation,variable = guess). The guess is not necessary, but can make the process faster. The screen to the left below shows the solutions obtained by giving suitable guesses. The screen to the right below shows the solutions obtained by using a restriction. The positive solution is obtained with the restriction x > 0 and the negative solution with x < 0. The syntax for the latter is shown in the entry line. 9:Trig and A:Complex 9:Trig will be used in a later section of this chapter, whereas A:Complex is not used. B:Extract This contains a submenu. The first two functions of this menu are briefly discussed here. 1:getNum( This applies the common denominator function and then returns the numerator of the result. 2:getDenom( This applies the common denominator function and then returns the denominator of the result. Graphing Graphing using a TI CAS calculator is very similar to graphing with a TI graphing calculator. The screens associated with graphing are listed in green directly below the screen. Y= screen For the Y= screen press and then F1. The default Y= screen appears as shown. The cursor appears at the y1= position. Press ENTER to take the cursor to the Edit line. This can also be achieved by pressing F3 for Edit.

8 710 Essential Mathematical Methods 3&4CAS In the Edit line enter y1(x) = x 2 and press ENTER again. The result now appears in pretty print format. Note the tick to the left. This indicates that the function is selected and will be graphed when and then F3 is pressed. Menus F2, F5 and F6 contain features similar to the TI graphing calculators. These are reproduced here. The F6 menu enables the user to change the style of the graph. To change the style the cursor needs to be placed on the required function as shown. Remember, to obtain the F6 menu press 2nd F1. The user can experiment to find the use of each of the menu items. To close the menu, and return to the Y= screen, press ESC. The F5 menu enables the Y= screen to be set. The F2 menu has the same zoom features as the TI-83 with the addition of items B:Memory and C:SetFactors. B:Memory allows a window setting to be stored and recalled. From the F2 ZOOM menu choose B:Memory. The choices in this memory are: 1: ZoomPrev This returns to the viewing window displayed before the previous zoom. 2: ZoomSto This saves the current viewing window. 3: ZoomRcl This recalls the viewing window last stored with ZoomSto. The screen on the right below is the ZOOM FACTORS screen. These are altered by first using the keys and to highlight the change to be made and then by typing in the required value. The WINDOW screen The WINDOW screen is very similar to that of the TI-83. The screen to the left below shows the standard settings. By pressing F1 and 9 the GRAPH FORMATS screen can be obtained.

9 Appendix B Computer Algebra System (TI calculators) 711 B4 This is also obtainable through the Y= screen and the GRAPH screen through the same procedure. The GRAPH screen In the Y= screen enter y = 2x 4. The WINDOW screen has the settings as shown and TRACE (F3) has been activated. The MATH (F5) menu contains options. These include 9:Distance, A:Tangent, and C:Shade. Some of these will be discussed in a later section. Defining functions Expressions can be stored in memory locations. For example x 2 3x p stores the expression x 2 3x in memory location p. This can be operated on using the functions discussed previously. Make sure that memory location x has been cleared first. Functions can be defined in terms of a variable through using store or the define command, which is found by pressing F4 (to obtain F4 Other menu) and selecting 1:Define. Inthe following, two functions are defined and then operations from the Algebra and Calculus menus are applied. It is often efficient to define functions at the beginning of a problem. Functions can be defined in terms of a variable and arbitrary constants. This is shown in the screen opposite and the method of assigning values is also shown.

10 712 Essential Mathematical Methods 3&4CAS B5 Functions involving more than one variable can also be defined. Circular functions MODE The choice of radian or degree measure is made from the MODE menu. Solving equations Solve from the Algebra (F2) menu is used. Initially the solution of the equation sin x = 0.5 will be considered. The exact solution is given as x = 2k or x = 2k + 6. The parameter k on the screens. The solution when the MODE chosen is AUTO is also shown. The indicates that it is the ith parameter to be used. In the following, the syntax for finding the solutions for sin x = 0.5 for 0 x 2 is shown. In the entry line: solve(sin x = 0.5, x) x > 0 and x < 2 to give the solutions 6 and 5 6. It is also possible to give values to the parameter. For example in the is given values 1, 0 and 1. The complete entry in the entry line is x = or x = ={ 1, 0, 1} 6

11 Appendix B Computer Algebra System (TI calculators) 713 B6 Using the Calculus menu Operations in the Calculus menu (F3) Seven of the operations of the calculus menu are considered here. These are: 1:d( differentiate, 2: (integrate, 3:limit(, 6:fMin(, 7:fMax(, A:nDeriv( and B:nInt( 1:d(differentiate This operation is used to differentiate expressions. The required form is d(expression, variable). The followings screens illustrate its use. For the second derivative the form is d(expression, variable, 2). 2: (integrate This operation is used to differentiate expressions. For indefinite integrals the required form is (expression, var). If the family of antiderivatives is required enter (expression, var, c). Make sure that c has not been assigned a value. This is done by observing the VAR-LINK screen. For definite integrals the required form is (expression, var, upper, lower). The following screens illustrate its use. 3:limit( The limits considered in this section will be those that are considered in the senior years of school mathematics. Right and left limits as well as two-sided limits will be considered. The syntax is as follows. For lim limit(expression, x, a) x a For lim limit(expression, n, ) n For lim limit(expression, x,0,1) x 0 + For lim limit(expression, n,0, 1) n 0

12 714 Essential Mathematical Methods 3&4CAS The following screens demonstrate this syntax. 6:fMin( and 7:fMax( These operations return the value for which the maximum or minimum value (or the least upper bound or greatest lower bound) of a function occurs. fmax returns the value for which a local maximum occurs only if this is the actual maximum for the interval being considered. A similar statement holds for fmin. The syntax for these functions is fmin(expression, var) and fmax(expression, var). A:nDeriv( This operation will produce the numerical derivative of a function by determining f (x + h) f (x h). The derivative is then determined using the appropriate limit. h B:nInt( This returns an approximate value for a definite integral. This is illustrated in the following screens. In the screen to the left below the technique for integration discussed above is employed for comparison.

13 Appendix B Computer Algebra System (TI calculators) 715 B7 Probability Press 2ND MATH to obtain the MATH menu. Select 7: Probability to see the available functions. The first four are 1:!, 2:nPr(, 3:nCr( and 4:rand( The way of using 3:nCr( is to enter values of n and r as follows. In the home screen for 5 C 2, enter ncr(5, 2) To generate a random integer between 1 and 6 inclusive enter rand(6) For the binomial distribution, go to the Stats/List Editor (Application) and go to F5 to see the Distribution menu. Select B: Binomial Pdf. The screen appears as shown. Enter the value of p and n required. In the screen n = 6 and p = 0.7. Press ENTER again to see the probability distribution. A better way to do this is to define a binomial function which can be kept. From F4 choose 1: Define and complete as bi(n, p, x) = ncr(n, x) p x (1 p) (n x); then this function can be used for any binomial distribution problem. Also for the cumulative distribution define the function cbi(n, p, x) = (bi(n, p, x), x, 0, x). is found in the CALC menu. This will give the cumulative distribution. This is shown in the following section. For the normal distribution, go to the Stats/List editor (Application) and go to F5 to see the Distribution menu. Select 4: Normal Cdf. Enter the value of and required, for example = 6 and = 0.7. For Pr(X < 1) enter upper value = 1 and lower value =. Press ENTER again to see the probability. Forinverse choose 1: Inverse Normal after choosing 2: Inverse from the F5 menu. Enter the probability, and to obtain the result. Plotting a distribution The example for the binomial distribution is used. In the Stats/List Editor the binomial distribution values are found in the Pdf list. Enter 0 to 6 in List1. Press F2 plots and select Plot Setup. Select Plot1 and then press F1. Complete as shown. Press ENTER twice. Go to the Graph window and select 9. Zoom Data from the Zoom menu. The plot is as shown.

CAMBRIDGE TECHNOLOGY IN MATHS Year 12 ClassPad user guide

CAMBRIDGE TECHNOLOGY IN MATHS Year 12 ClassPad user guide Year 12 ClassPad User guide Page 1 of 12 CAMBRIDGE TECHNOLOGY IN MATHS Year 12 ClassPad user guide CONTENTS Introduction to the ClassPad 330 2 Using the Main menu 4 Graphing 8 Defining functions 9 Probability

More information

Using a Scientific Calculator

Using a Scientific Calculator Using a Scientific Calculator Hardware on the TI-89 How much memory does the TI 89 have? The TI-89 has 188k of RAM and 384k of memory that can be used for archiving programs, making a total memory of 572k

More information

TI-89 (and 92) Calculus Operations

TI-89 (and 92) Calculus Operations TI 89 1 TI-89 (and 92) Calculus Operations A Preliminaries: 1. Home Screen: This is the screen that appears when the calculator is turned on. To return to the Home screen from other screens, press HOME

More information

With the cursor flashing on the word FUNCTION, press the. Section 1. <MODE> key

With the cursor flashing on the word FUNCTION, press the. Section 1. <MODE> key 1 USING THE TI-89 A Primer for TI-83 Users (Easy Calculus Summer Assignment) Come to school on the first day with your TI-89. We will start school by learning calculus, so this assignment will help you

More information

Tips to Save Typing, etc.

Tips to Save Typing, etc. MATH 110 Dr. Stoudt Using Your TI-89/Voyage 200 Guidebooks for all Texas Instruments calculators can be downloaded (in Adobe PDF format) from http://education.ti.com/en/us/guidebook/search Just search

More information

OVERVIEW DISPLAYING NUMBERS IN SCIENTIFIC NOTATION ENTERING NUMBERS IN SCIENTIFIC NOTATION

OVERVIEW DISPLAYING NUMBERS IN SCIENTIFIC NOTATION ENTERING NUMBERS IN SCIENTIFIC NOTATION OVERVIEW The intent of this material is to provide instruction for the TI-86 graphing calculator that may be used in conjunction with the second edition of Gary Rockswold's College Algebra Through Modeling

More information

Graphics calculator instructions

Graphics calculator instructions Graphics calculator instructions Contents: A B C D E F G Basic calculations Basic functions Secondary function and alpha keys Memory Lists Statistical graphs Working with functions 10 GRAPHICS CALCULATOR

More information

6 Using Technology Wisely

6 Using Technology Wisely 6 Using Technology Wisely Concepts: Advantages and Disadvantages of Graphing Calculators How Do Calculators Sketch Graphs? When Do Calculators Produce Incorrect Graphs? The Greatest Integer Function Graphing

More information

CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-Nspire user guide

CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-Nspire user guide Year 11 TI-Nspire User guide Page 1 of 14 CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-Nspire user guide CONTENTS Introduction to the TI-Nspire 2 Using the Calculator application 4 Using the Graphs & Geometry

More information

TI-83 Graphing Functions & Relations

TI-83 Graphing Functions & Relations To graph a function: 1. The equation must be written in functional notation in explicit (or y equals ) form. (Y is the dependent variable and X is the independent variable.) For instance, we may need to

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

CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-89 User guide

CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-89 User guide Year 11 TI-89 User guide Page 1 of 17 CAMBRIDGE TECHNOLOGY IN MATHS Year 11 TI-89 User guide CONTENTS Getting started 2 Linear equations and graphs 3 Statistics 5 Sequences 11 Business and related mathematics

More information

TEXAS INSTRUMENTS TI-92

TEXAS INSTRUMENTS TI-92 CHAPTER 5 TEXAS INSTRUMENTS TI-9 5.1 Getting Started with the TI-9 In this book, the key with the green diamond symbol inside a green border will be indicated by, the key with the white arrow pointing

More information

Texas Instruments TI-89 Graphing Calculator. Getting started with the TI-89

Texas Instruments TI-89 Graphing Calculator. Getting started with the TI-89 Part IV: Texas Instruments TI-89 Graphing Calculator IV.1 Getting started with the TI-89 In this guide, the key with the green diamond symbol inside a green border will be indicated by, the key with the

More information

Texas Instruments TI-86 Graphics Calculator. Getting started with the TI-86

Texas Instruments TI-86 Graphics Calculator. Getting started with the TI-86 Part III: Texas Instruments TI-86 Graphics Calculator III.1 Getting started with the TI-86 III.1.1 Basics: Press the ON key to begin using your TI-86 calculator. If you need to adjust the display contrast,

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

Getting Started with the TI-83/TI-84 Plus Family of Calculators

Getting Started with the TI-83/TI-84 Plus Family of Calculators Appendix C Getting Started with the TI-83/TI-84 Plus Family of Calculators ON-OFF To turn on the calculator, press the ON key. To turn off the calculator, press 2nd and then ON. Most keys on the calculator

More information

Tips to Save Typing, etc.

Tips to Save Typing, etc. MATH 110 Dr. Stoudt Using Your TI-nspire CAS Guidebooks for all Texas Instruments calculators can be downloaded (in Adobe PDF format) from http://education.ti.com/en/us/guidebook/search Just search for

More information

Short Introduction for the TI 92

Short Introduction for the TI 92 MaMaEuSch Management Mathematics for European Schools http://www.mathematik.unikl.de/~mamaeusch/ Short Introduction for the TI 92 Markus Buchtele 1 Univ.Prof. Dipl.Ing. Dr. Franz Rendl 2 This project was

More information

Table of contents. Jakayla Robbins & Beth Kelly (UK) Precalculus Notes Fall / 27

Table of contents. Jakayla Robbins & Beth Kelly (UK) Precalculus Notes Fall / 27 Table of contents Using Technology Wisely Connecting the Dots. Is This Always a Good Plan? Basic Instructions for the Graphing Calculator Using Technology to Find Approximate Solutions of Equations in

More information

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

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

More information

TI-89 Titanium Workshop Saturday, July 17 th 2004

TI-89 Titanium Workshop Saturday, July 17 th 2004 TI-89 Titanium Workshop Saturday, July 17 th 2004 TI-89 Titanium Hands-On Activities TI-89 Titanium Geography : Apps Desktop Turning ON the Apps Desktop: 1. Press MODE 2. Press 3. Scroll down to the Apps

More information

Mark Howell Gonzaga High School, Washington, D.C. Martha Montgomery Fremont City Schools, Fremont, Ohio

Mark Howell Gonzaga High School, Washington, D.C. Martha Montgomery Fremont City Schools, Fremont, Ohio Be Prepared for the Calculus Exam Mark Howell Gonzaga High School, Washington, D.C. Martha Montgomery Fremont City Schools, Fremont, Ohio Practice exam contributors: Benita Albert Oak Ridge High School,

More information

Graphing Calculator Comparison Activities

Graphing Calculator Comparison Activities Graphing Calculator Comparison Activities CASIO fx-9750gii VS. TI-83, TI-83 Plus, TI-84, TI-84 Plus Finding Extrema Algebraically Texas Instruments: TI-83 Plus, TI-84 Plus, & TI-84 SE CASIO GRAPHING CALCULATORS

More information

Basic Graphing on TI 83 / 84

Basic Graphing on TI 83 / 84 Basic Graphing on TI 83 / 84 A graphing calculator can, of course, graph but only from an equation in function form. That means each equation must be solved for "y". The first activity is to practice solving

More information

12.1 Getting Started with the TI-86

12.1 Getting Started with the TI-86 CHAPTER 1 TEXAS INSTRUMENTS TI-86 1.1 Getting Started with the TI-86 1.1.1 Basics: Press the ON key to begin using your TI-86. If you need to adjust the display contrast, first press nd, then press and

More information

How to Do Everything We Need to Do on a TI Calculator in Algebra 2 for Now (Unless Davies Forgot Something)

How to Do Everything We Need to Do on a TI Calculator in Algebra 2 for Now (Unless Davies Forgot Something) How to Do Everything We Need to Do on a TI Calculator in Algebra 2 for Now (Unless Davies Forgot Something) 10.01.17 Before you do anything, set up your calculator so that it won t get in your way. Basics:

More information

EXAMPLE. 1. Enter y = x 2 + 8x + 9.

EXAMPLE. 1. Enter y = x 2 + 8x + 9. VI. FINDING INTERCEPTS OF GRAPHS As we have seen, TRACE allows us to find a specific point on the graph. Thus TRACE can be used to solve a number of important problems in algebra. For example, it can be

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

Graphing Calculator Resource Manual

Graphing Calculator Resource Manual Table of Contents I. Basics. Page 2 1. Contrast 2. Settings 3. Parentheses 4. Computation 5. Editing 6. The MATH Menu 7. Other Home Screen Operations 8. Catalog II. Graphing and Tables.. Page 6 1. Y= Menu

More information

Introduction to the TI-83/84 Calculator

Introduction to the TI-83/84 Calculator P a g e 0 0 1 Introduction to the TI-83/84 Calculator Directions: Read each statement or question. Follow the directions each problem gives you. Basic Buttons 1 st Function Keys: Normal buttons 2 nd Function

More information

Analyzing Change: Extrema and Points of Inflection & 5.1 Optimization

Analyzing Change: Extrema and Points of Inflection & 5.1 Optimization Chapter 5 Analyzing Change: Extrema and Points of Inflection & 5.1 Optimization Your calculator can be very helpful in checking your analytic work when you find optimal points and points of inflection.

More information

Texas Instruments TI-83, TI-83 Plus, TI-84 Plus Graphics Calculator

Texas Instruments TI-83, TI-83 Plus, TI-84 Plus Graphics Calculator Part II: Texas Instruments TI-83, TI-83 Plus, TI-84 Plus Graphics Calculator II.1 Getting started with the TI-83, TI-83 Plus, TI-84 Plus Note: All keystroke sequences given for the TI-83 are applicable

More information

Ingredients of Change: Nonlinear Models

Ingredients of Change: Nonlinear Models Chapter 2 Ingredients of Change: Nonlinear Models 2.1 Exponential Functions and Models As we begin to consider functions that are not linear, it is very important that you be able to draw scatter plots,

More information

TI- Nspire Testing Instructions

TI- Nspire Testing Instructions TI- Nspire Testing Instructions Table of Contents How to Nsolve How to Check Compositions of Functions How to Verify Compositions of Functions How to Check Factoring How to Use Graphs to Backward Factor

More information

TI-89 Calculator Workshop #1 The Basics

TI-89 Calculator Workshop #1 The Basics page 1 TI-89 Calculator Workshop #1 The Basics After completing this workshop, students will be able to: 1. find, understand, and manipulate keys on the calculator keyboard 2. perform basic computations

More information

Computer Algebra Systems: An Introduction

Computer Algebra Systems: An Introduction Computer Algebra Systems: An Introduction Topic: An Introduction to Computer Algebra Systems (CAS) Notes to the Teacher: R. Meisel, April 7, 2007 rollym@vaxxine.com This activity is designed to use the

More information

USING THE TI-83 GRAPHING CALCULATOR IN WORKSHOP CALCULUS. Christa Fratto, Nancy Baxter Hastings, and Barbara E. Reynolds. 1. General Information...

USING THE TI-83 GRAPHING CALCULATOR IN WORKSHOP CALCULUS. Christa Fratto, Nancy Baxter Hastings, and Barbara E. Reynolds. 1. General Information... Appendix: USING THE TI-83 GRAPHING CALCULATOR IN WORKSHOP CALCULUS Christa Fratto, Nancy Baxter Hastings, and Barbara E. Reynolds 1. General Information...351 2. Calculator Basics...351 2.1. Turning the

More information

Chapter 3 Limits and Derivative Concepts

Chapter 3 Limits and Derivative Concepts Chapter 3 Limits and Derivative Concepts 1. Average Rate of Change 2. Using Tables to Investigate Limits 3. Symbolic Limits and the Derivative Definition 4. Graphical Derivatives 5. Numerical Derivatives

More information

Adjusting the Display Contrast (Making the Screen Lighter or Darker)

Adjusting the Display Contrast (Making the Screen Lighter or Darker) Introduction: TI-86 On/Off, Contrast, Mode, and Editing Expressions Turning the Calculator On When you press the ON button, you should see a blinking dark rectangle (called the cursor) in the upper left-hand

More information

Macmillan TI-Nspire supplement

Macmillan TI-Nspire supplement February 2011 Contents Changes to the hardware the touchpad... 1 Changes to the software OS version 2... 2 The Home screen... 2 Page layout... 4 Calculator page menu changes... 5 Systems of equations...

More information

Chapter 7 Transcendental Functions

Chapter 7 Transcendental Functions Chapter 7 Transcendental Functions. Trapezoidal Rule and Simpson s Rule. Other Numerical Integration 3. Logarithmic and Eponential Functions 4. Inverse Trigonometric Functions 5. Comparing Symbolic Integration

More information

Basic Calculator Functions

Basic Calculator Functions Algebra I Common Graphing Calculator Directions Name Date Throughout our course, we have used the graphing calculator to help us graph functions and perform a variety of calculations. The graphing calculator

More information

Chapter 1 Vectors. 1. Storing Vectors in a Matrix

Chapter 1 Vectors. 1. Storing Vectors in a Matrix Chapter 1 Vectors 1. Storing Vectors in a Matrix 2. Vector Operations 3. Other Matrices and Determinants 4. Visualization of 2D Vectors This chapter provides some tips on how to work with vectors on the

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

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

MATHSQUEST MANUAL FOR THE TI-Nspire CAS CALCULATOR 5TH EDITION

MATHSQUEST MANUAL FOR THE TI-Nspire CAS CALCULATOR 5TH EDITION MATHSQUEST MANUAL FOR THE TI-Nspire CAS CALCULATOR 5TH EDITION PAULINE HOLLAND SHIRLY GRIFFITH RAYMOND ROZEN Fifth edition published 2016 by John Wiley & Sons Australia, Ltd 42 McDougall Street, Milton,

More information

Graphing Calculator Graphing with the TI-85

Graphing Calculator Graphing with the TI-85 Graphing Calculator Graphing with the TI-85 I. Introduction The TI-85 has fifty keys, many of which will perform multiple functions when used in combination. Each key has a symbol printed on its face.

More information

1.4. Skills You Need: Working With Radicals. Investigate

1.4. Skills You Need: Working With Radicals. Investigate 1.4 1 Skills You Need: Working With Radicals 1 2 2 5 The followers of the Greek mathematician Pythagoras discovered values that did not correspond to any of the rational numbers. As a result, a new type

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

TI-84 Plus OS update v. 2.53MP New Feature Highlights MathPrint TM and More!

TI-84 Plus OS update v. 2.53MP New Feature Highlights MathPrint TM and More! TI-84 Plus OS update v. 2.53MP New Feature Highlights MathPrint TM and More! http://education.ti.com/educationportal/downloadcenter/softwaredetail.do?website=us&tabid=1&appid=6014 Note: Please also update

More information

Contents 20. Trigonometric Formulas, Identities, and Equations

Contents 20. Trigonometric Formulas, Identities, and Equations Contents 20. Trigonometric Formulas, Identities, and Equations 2 20.1 Basic Identities............................... 2 Using Graphs to Help Verify Identities................... 2 Example 20.1................................

More information

RECALLING PREVIOUS EXPRESSIONS

RECALLING PREVIOUS EXPRESSIONS The variable Ans holds the most recent evaluated expression, and can be used in calculations by pressing SHIFT ( ). For example, suppose you evaluate 3 4, and then wish to subtract this from 17. This can

More information

Graphing Calculator Scientific Calculator Version 2.0

Graphing Calculator Scientific Calculator Version 2.0 Graphing Calculator Scientific Calculator Version 2.0 www.infinitysw.com/ets March 14, 2017 1 Table of Contents Table of Contents 1 Overview 3 2 Navigation 4 3 Using the Calculator 5 Display 5 Performing

More information

The TI-83 and TI-83 Plus graphics calculators are loaded with

The TI-83 and TI-83 Plus graphics calculators are loaded with 04 549707 Ch01.qxd 11/13/03 8:51 AM Page 9 Chapter 1 Coping with the Basics In This Chapter Turning the calculator on and off Using the keyboard Using the menus Setting the mode of the calculator Using

More information

Math Calculus I

Math Calculus I Math 1592 - Calculus I A brief Introduction to the TI92/Voyage 200 Here we give a selection of TI commands that we will be using through this course. 1. Basic Commands solve If we type the following solve(x

More information

TI-89 graphing calculators are loaded with many useful features. With

TI-89 graphing calculators are loaded with many useful features. With In This Chapter Chapter 1 Coping with the Basics Turning the calculator on and off Using the keyboard Using the menus Setting the mode of the calculator Using the CATALOG TI-89 graphing calculators are

More information

APPENDICES. APPENDIX A Calculus and the TI-82 Calculator. Functions. Specific Window Settings

APPENDICES. APPENDIX A Calculus and the TI-82 Calculator. Functions. Specific Window Settings APPENDICES APPENDIX A Calculus and the TI-82 Calculator Functions A. Define a function Press y= to obtain Y= edit screen. Cursor down to the function to be defined. (Press clear if the function is to be

More information

Introductory Applied Statistics: A Variable Approach TI Manual

Introductory Applied Statistics: A Variable Approach TI Manual Introductory Applied Statistics: A Variable Approach TI Manual John Gabrosek and Paul Stephenson Department of Statistics Grand Valley State University Allendale, MI USA Version 1.1 August 2014 2 Copyright

More information

Getting Started with the TI-84 Plus CE Graphing Calculator

Getting Started with the TI-84 Plus CE Graphing Calculator Getting Started with the TI-84 Plus CE Graphing Calculator This guidebook applies to software version 5.2. To obtain the latest version of the documentation, go to education.ti.com/go/download. Important

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 3 rd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 3 rd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 3 rd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

Ph3 Mathematica Homework: Week 6

Ph3 Mathematica Homework: Week 6 Ph3 Mathematica Homework: Week 6 Eric D. Black California Institute of Technology v1.1 Now that we ve covered techniques specific to data analysis, we will branch out into some more general topics. This

More information

Organizing and Summarizing Data

Organizing and Summarizing Data Section 2.2 9 Organizing and Summarizing Data Section 2.2 C H A P T E R 2 4 Example 2 (pg. 72) A Histogram for Discrete Data To create a histogram, you have two choices: 1): enter all the individual data

More information

Calculator Notes for the TI-83 Plus and TI-84 Plus

Calculator Notes for the TI-83 Plus and TI-84 Plus CHAPTER 1 Calculator Notes for the Note 1A Reentry If you want to do further calculation on a result you ve just found, and that result is the first number in the expression you now want to evaluate, you

More information

CURRICULUM STRUCTURE Topics Covered Term 1: Term 2: Term 3:

CURRICULUM STRUCTURE Topics Covered Term 1: Term 2: Term 3: CURRICULUM STRUCTURE Topics Covered Term 1: Term 2: Term 3: Year 7 The four operations Place value Ordering numbers Inverse operations Perimeter and area of shapes Fractions and Decimals Order of operations

More information

AP Calculus AB Summer Review Packet

AP Calculus AB Summer Review Packet AP Calculus AB Summer Review Packet Mr. Burrows Mrs. Deatherage 1. This packet is to be handed in to your Calculus teacher on the first day of the school year. 2. All work must be shown on separate paper

More information

Sharp EL-9900 Graphing Calculator

Sharp EL-9900 Graphing Calculator Sharp EL-9900 Graphing Calculator Basic Keyboard Activities General Mathematics Algebra Programming Advanced Keyboard Activities Algebra Calculus Statistics Trigonometry Programming Sharp EL-9900 Graphing

More information

Getting Started with the TI-83 Premium CE Graphing Calculator

Getting Started with the TI-83 Premium CE Graphing Calculator Getting Started with the TI-83 Premium CE Graphing Calculator This guidebook applies to software version 5.2. To obtain the latest version of the documentation, go to education.ti.com/go/download. Important

More information

1. Let be a point on the terminal side of θ. Find the 6 trig functions of θ. (Answers need not be rationalized). b. P 1,3. ( ) c. P 10, 6.

1. Let be a point on the terminal side of θ. Find the 6 trig functions of θ. (Answers need not be rationalized). b. P 1,3. ( ) c. P 10, 6. Q. Right Angle Trigonometry Trigonometry is an integral part of AP calculus. Students must know the basic trig function definitions in terms of opposite, adjacent and hypotenuse as well as the definitions

More information

My first six months with. By Damien Bushby of Blackburn High School, Victoria Presented at MAV Dec, 2007

My first six months with. By Damien Bushby of Blackburn High School, Victoria Presented at MAV Dec, 2007 My first six months with ClassPad. By Damien Bushby of Blackburn High School, Victoria Presented at MAV Dec, 2007 1 Which calculator? Continuation with current company. Trial of new model. Fat fingers

More information

GRAPHING CALCULATOR REFERENCE BOOK

GRAPHING CALCULATOR REFERENCE BOOK John T. Baker Middle School GRAPHING CALCULATOR REFERENCE BOOK Name: Teacher: - 1 - To Graph an Equation: Graphing Linear Equations 1.) Press Y= and enter the equation into Y 1. 2.) To see the graph in

More information

GRAPHING CALCULATOR KEYSTROKE GUIDE

GRAPHING CALCULATOR KEYSTROKE GUIDE GRAPHING CALCULATOR KEYSTROKE GUIDE to accompany ELEMENTARY ALGEBRA: DISCOVERY AND VISUALIZATION 2nd Edition Karl M. Zilm Lewis & Clark Community College HOUGHTON MIFFLIN COMPANY BOSTON NEW YORK Editor

More information

Graphing Calculator How To Packet

Graphing Calculator How To Packet Graphing Calculator How To Packet The following outlines some of the basic features of your TI Graphing Calculator. The graphing calculator is a useful tool that will be used extensively in this class

More information

Brenda Lynch TI Summit Algebra 1 October 20, 2012

Brenda Lynch TI Summit Algebra 1 October 20, 2012 I. Solving Equations A. On the TI-84 i. Plugging in answer with ( ) ii. Using the STO key to check your answer iii. Boolean Check (0 means incorrect, 1 means correct) iv. Using y= to solve an equation

More information

1. What specialist uses information obtained from bones to help police solve crimes?

1. What specialist uses information obtained from bones to help police solve crimes? Mathematics: Modeling Our World Unit 4: PREDICTION HANDOUT VIDEO VIEWING GUIDE H4.1 1. What specialist uses information obtained from bones to help police solve crimes? 2.What are some things that can

More information

Sharp EL-9900 Graphing Calculator

Sharp EL-9900 Graphing Calculator Sharp EL-9900 Graphing Calculator Basic Keyboard Activities General Mathematics Algebra Programming Advanced Keyboard Activities Algebra Calculus Statistics Trigonometry Programming Sharp EL-9900 Graphing

More information

Whole Group: Basics of Graphing on your TI Calculator

Whole Group: Basics of Graphing on your TI Calculator Whole Group: Basics of Graphing on your TI Calculator 1. Start by pressing the Y= key on the upper left of your calculator. Notice that there are 10 different lines to write; this means that it is possible

More information

Graphics Calculators

Graphics Calculators Graphics Calculators Starting in ninth grade, you may use school provided calculators on exams. Today you will learn many of the features available on TI graphics calculators. Plain Vanilla The number

More information

Dr. Del's Tiers 1 6 Syllabus

Dr. Del's Tiers 1 6 Syllabus Tier 1 28 SCIENTIC CALCULATOR & PRE-ALGEBRA LESSONS Using a Scientific Calculator: Introduction plus 16 lessons CI: Introduction (5 Min.) C1: Basic Operations (6 Min.) C2: Real Numbers (6 Min.) C3: Negative

More information

PR3 & PR4 CBR Activities Using EasyData for CBL/CBR Apps

PR3 & PR4 CBR Activities Using EasyData for CBL/CBR Apps Summer 2006 I2T2 Process Page 23. PR3 & PR4 CBR Activities Using EasyData for CBL/CBR Apps The TI Exploration Series for CBR or CBL/CBR books, are all written for the old CBL/CBR Application. Now we can

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

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

Ingredients of Change: Nonlinear Models & 2.1 Exponential Functions and Models

Ingredients of Change: Nonlinear Models & 2.1 Exponential Functions and Models Chapter 2 Ingredients of Change: Nonlinear Models & 2.1 Exponential Functions and Models As we consider models that are not linear, it is very important that you be able to use scatter plots, numerical

More information

Appendix A Using a Graphing Calculator. Section 4: The CALCULATE Menu

Appendix A Using a Graphing Calculator. Section 4: The CALCULATE Menu Appendix A Using a Graphing Calculator Section 4: The CALCULATE Menu The CALC menu provides access to many features that will be regularly used in the class. value returns a single y value when the user

More information

Run Menu. Order of Operations. Example: x Enter the expression as it appears and press [EXE]

Run Menu. Order of Operations. Example: x Enter the expression as it appears and press [EXE] Run Menu With manual calculations, input formulas from left to right, just as they are written on paper. With formulas that include mixed arithmetic operators and parentheses, the calculator automatically

More information

Graphics calculator instructions

Graphics calculator instructions Graphics calculator instructions Contents: A B C D E F G Basic calculations Basic functions Secondary function and alpha keys Memory Lists Statistical graphs Working with functions 10 GRAPHICS CALCULATOR

More information

Blue Pelican Calculator Appendices

Blue Pelican Calculator Appendices Blue Pelican Calculator Appendices Version 1.01 Copyright 2009-2011 by Charles E. Cook; Refugio, Tx (All rights reserved) Graphing Calculator Appendices Appendix A: Special marking of graphed functions

More information

Basic Matrix Manipulation with a TI-89/TI-92/Voyage 200

Basic Matrix Manipulation with a TI-89/TI-92/Voyage 200 Basic Matrix Manipulation with a TI-89/TI-92/Voyage 200 Often, a matrix may be too large or too complex to manipulate by hand. For these types of matrices, we can employ the help of graphing calculators

More information

powerone for iphone/ipad/ipod Touch Help

powerone for iphone/ipad/ipod Touch Help powerone for iphone/ipad/ipod Touch Help This page includes help and information for version 3 of our powerone calculator for iphone, ipad and ipod touch product. Requirements iphone, ipad or ipod touch

More information

HP Prime: The 10-Quicky Introduction Version 1.0. HP Prime: A Breakthrough in Mathematics Education Technology!

HP Prime: The 10-Quicky Introduction Version 1.0. HP Prime: A Breakthrough in Mathematics Education Technology! HP Prime: A Breakthrough in Mathematics Education Technology! GT Springer, Solutions Architect HP Calculators and Educational Software gt.springer@hp.com This hands-on workshop is a basic introduction

More information

Getting Started with the TI-84 Plus CE Graphing Calculator

Getting Started with the TI-84 Plus CE Graphing Calculator Getting Started with the TI-84 Plus CE Graphing Calculator This guidebook applies to software version 5.3. To obtain the latest version of the documentation, go to education.ti.com/go/download. Important

More information

CW High School. Advanced Math A. 1.1 I can make connections between the algebraic equation or description for a function, its name, and its graph.

CW High School. Advanced Math A. 1.1 I can make connections between the algebraic equation or description for a function, its name, and its graph. 1. Functions and Math Models (10.00%) 1.1 I can make connections between the algebraic equation or description for a function, its name, and its graph. 4 Pro cient I can make connections between the algebraic

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

Calculator Basics TI-83, TI-83 +, TI-84. Index Page

Calculator Basics TI-83, TI-83 +, TI-84. Index Page Calculator Basics TI-83, TI-83 +, TI-84 Index Page Getting Started Page 1 Graphing Page 2 Evaluating Functions page 4 Minimum and Maximum Values Page 5 Table of Values Page 6 Graphing Scatter Plots Page

More information

Chapter 2: Math, Angle, and Test Operations

Chapter 2: Math, Angle, and Test Operations Chapter 2: Math, Angle, and Test Operations Getting Started: Coin Flip Getting Started is a fast-paced introduction. Read the chapter for details. Suppose you want to model flipping a fair coin 10 times.

More information

SOLVER TI-83 QUICK REFERENCE. The SOLVER feature is used to solve equations. There may be one variable or more than one variable in the equation.

SOLVER TI-83 QUICK REFERENCE. The SOLVER feature is used to solve equations. There may be one variable or more than one variable in the equation. SOLVER TI-83 QUICK REFERENCE The SOLVER feature is used to solve equations. There may be one variable or more than one variable in the equation. 1. Press MATH O to activate the SOLVER. 2. Enter the equation

More information

Implicit Function Explorations

Implicit Function Explorations Activities with Implicit Functions and Implicit Differentiation on the TI-89/Voyage 00 Dennis Pence Western Michigan University Kalamazoo, Michigan USA Abstract: Unfortunately the topic of implicit differentiation

More information

Calculator Notes for the TI-83 and TI-83/84 Plus

Calculator Notes for the TI-83 and TI-83/84 Plus CHAPTER 2 Calculator Notes for the Note 2A Naming Lists In addition to the six standard lists L1 through L6, you can create more lists as needed. You can also give the standard lists meaningful names (of

More information

Graphing Calculator Workshop

Graphing Calculator Workshop Graphing Calculator Workshop Marian K. Hukle, hukle@math.ku.edu; Amy Kim, akim@math.ku.edu; Chris Valle, cvalle@math.ku.edu POWER ON/OFF ON to turn on calculator. 2nd OFF to turn off calculator. SCREEN

More information