Education Technology
< Previous | 3800 - 3825 of 9160 results |  Next >

Solution 12043: Archiving a Program on the TI-89 Family, TI-92 Plus, and Voyage™ 200 Graphing Calculators.

...Type the name of the program to archive. The screen will read : Archive Pgrm Name. • Press [ENTER] to archive the program. • A Done message will confirm that the program is archived. Archiving from the VAR-LINK menu: • Press [2nd] [VAR-LINK] to access the menu. • Highlight the name of the p...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12043

Solution 11797: Using the Expand() Function on the TI-89 Family, TI-92 Family and Voyage™ 200 Graphing Calculators.

...expand() function: Example: Expand (x+y+1)^2 1) From the HOME screen press [F2] for the Algebra menu and select 3:expand( 2) Enter (x+y+1)^2 3) Finally, press [ENTER] and the function will be displayed in its expanded form. Please see the TI-89 family, TI-92 family and Voyage 200 guideboo...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11797

Solution 12042: Algorithm for Summation on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...he å ( function, which is accessed by pressing [2nd] [MATH] [B] [4], is as follows: å(expression, variable, lower limit, upper limit) Example: To find the sum of the sequence of 2x as x goes from 1 to 5, input the problem as follows: å(2^x,x,1,5) and press [ENTER]. The answer is 62. Pl...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12042

Solution 11769: Graphing Coordinates Using the TI-89 Titanium and Voyage™ 200 Graphing Calculators.

...ll the X-values (2,3,4). Under c2, type in all the Y-values (5,6,7).4) Press the [F2] key to select Plot Setup. Highlight Plot 1: and press [F1] to Define Plot 1.5) Select Scatter for the Plot Type and select Box for the Mark.6) Next to x, type in c1, which is all the x-values for the plot. Next ...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11769

Solution 11869: Performing Unit Conversions On The TI-89 Family,TI-92 Family, and Voyage™ 200 Graphing Calculators.

... family,TI-92 family, and Voyage 200 graphing calculators? It is possible to convert from one unit to another in the same category, including user-defined units. For example, to convert 4 light years to kilometers: • Enter 4 • Press [2nd][3] to access the UNITS menu (On Voyage 200 press [♦][P...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11869

Solution 11868: Certain Polar Values Not Computed on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...calculated in rectangular form. So, the polar complex numbers are converted to rectangular form, then the computation (a * b) / (a + b) is performed. Finally, the resulting rectangular complex number is converted to polar form. It is a difficult process and takes several minutes to compute. Sim...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11868

Solution 12133: Entering a List on the Home Screen using the TI-89 Family, TI-92 Family, or Voyage™ 200 Graphing Calculators.

...on the TI-92 family, or [GREEN DIAMOND] [CALC HOME] on the Voyage 200. 2) Press [2nd] [{]. 3) Input the number separated by commas. For instance, the first two values would be entered by pressing [1] [,] [2] [,]. Continue until all 4 values are entered. There should be no comma after the final va...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12133

Solution 11865: The isPrime() Algorithm on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...or is almost certainly prime. The is Prime() function stops at this point returning either false or (almost certainly) true. If the number is identified as composite, the factor() function then proceeds to the Pollard Rho factorization algorithm. It is arguably the fastest algorithm for when ...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11865

Solution 11861: The d() Function Algorithm on the TI-89 Family, TI-92 Family and Voyage™ 200 Graphing Calculators.

...wledge Base Knowledge Base Search What is the d() (symbolic differentiate) function algorithm? The d() function returns the first derivative of an expression with respect to a variable. The expression can be a list or a matrix. This function uses the chain rule togethe...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11861

Solution 11744: Entering Absolute Values on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...elow demonstrate how to enter the absolute value of an expression using the abs() function on the TI-89 family, TI-92 family, and Voyage 200.Example: Find |-9|1) Press the [CATALOG] key - [2nd] [CATALOG] on the TI-92 Family and Voyage 2002) Scroll to abs( and press [ENTER]3) Press [(-)] [9] [)]4)...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11744

Solution 12125: Converting a Number from Decimal to a Binary Number on the TI-89 Family, TI-92 Family, and Voyage 200™ Graphing Calculators.

...or the operator is integer>Bin. Example: Enter 256 >Bin and press [ENTER] to return 0b100000000. Please Note: Binary numbers always have a 0b prefix. A number entered without the prefix 0b or 0h (for hexadecimal) is treated as decimal (base 10). Please see the TI-89 family, TI-92 family, an...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12125

Solution 12124: Computing the Average Rate of Change of an Expression on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...gRC(expression, var,[h]) h is optional.The avgRC() function returns the forward difference quotient of the expression. The expression can be a user-defined function. h is the step value and if h is omitted, it defaults to 0.001.Examples:1. Entering avgRC(f(x),x,h) will return (f(x+h)-f(x))/h2. av...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12124

Solution 11734: Creating Repetition in a TI Basic Program on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

... include an exit condition allowing to leave the loop. The program will repeat the loop until the condition is met. It will then exit and execute the first statement after EndLoop. The loop will be executed endlessly, unless a Goto or Exit instruction is executed. Program segment example: :... ...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11734

Solution 10422: Creating Box Plots Using the TI-86.

... Edit. • Enter the data in the xStat and fStat lists. • Press [2nd] [QUIT] to leave the editor. To set the viewing window: • Press [GRAPH] [F2] • Fill in 0 for xMin and 12 for xMax • Press [EXIT] to return to the Home screen To create the box plot: • Press [2nd] [CATLG-VARS] [F1] • Scroll t...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/10422

Solution 11727: Computing the Dot Product on the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...hing calculators? The following instructions demonstrate how to compute the dot product using the TI-89 family, TI-92 family and Voyage 200. Example: Find the dot product of vectors and • Press [2ND] [MATH] [4]. • Press [ALPHA] [L] [3].    • Press [[] [1] [1] [,]. • Press[5] []] [,]. • Press [[...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11727

Solution 11789: Solving Quadratic Equations using the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

... 2) Press [X] [^] [2] [-]. 3) Press [3] [X] [-]. 4) Press [1] [0] [=] [0]. 5) Press [,] [X] [)]. 6) Press [ENTER]. In addition, the Polynomial Root Finder App is available for the TI-89 family, TI-92 Plus, and Voyage 200. Please see the TI-89 family, TI-92 family and Voyage 200 guidebooks for a...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11789

Solution 11725: Computing the Cross Product on the TI-89 Family and Voyage™ 200 Graphing Calculators.

... 200 calculators? The following instructions demonstrate how to compute the cross product using a TI-89 Family or Voyage 200 calculator: For Example: Find the cross product of vectors and 1) Turn the calculator ON and on the TI-89 Family press [HOME] and on the Voyage 200 press [Green Diamond][...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11725

Solution 12116: Calculating Weighted Mean Using the TI-89 Family, TI-92 Plus and Voyage™ 200 Graphing Calculators.

...Voyage 200 graphing calculators. Example : Suppose a student's grade in a class is determined as follows: 65% is from the test mean, 25% is from the final exam, and 10% is from homework. If the student's test mean is 87 and the final exam grade is 74 and the homework grade is 95, what is the wei...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12116

Solution 12115: Calculating the Transpose of a Matrix using the TI-89 Family, TI-92 Family, and Voyage™ 200 Graphing Calculators.

...mn dimensions are both 2.  4) Press [ENTER] twice.  5) Input the values that are above in the Data/Matrix Editor in sequence from left to right. To find the transpose: 1) From the Home screen 2) Input A (Press [ALPHA][A] on the TI-89) 3) Press [2nd][MATH], select 4:Matrix, and press [ENTER] twi...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12115

Solution 11714: Calculating the Eigenvalue and Eigenvector of a Matrix on the TI-89 Family, and Voyage™ 200 Graphing Calculators.

...1] [2].3) Press [2nd] [;].4) Press [6] [,] [1] [,] [5].5) Press [0] [,] [6] [,] [(-)] [2].6) Press [2nd] [ ] ].7) Press [STO?] [ALPHA] [A] [ENTER].To find the eigenvalue:1) Press [2nd] [MATH].2) Select [4:MATRIX] [9:eigVl].3) Press [ALPHA] [A] [ ) ] [ENTER].To find the eigenvector:1) Press [2nd] ...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/11714

Solution 12114: Calculating Integrals on the TI-89 Titanium and Voyage™ 200 Graphing Calculators.

... How do I calculate integrals on the TI-89 Titanium and Voyage 200 graphing calculators? The following examples demonstrate how to perform indefinite and definite integrals on the TI-89 Titanium and Voyage 200 graphing calculators: Indefinite integrals: Please Note: The ∫ symbol is the 2...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12114

Solution 10579: Entering Absolute Values using the TI-85 and TI-86 Graphing Calculators.

... The instructions below demonstrate how to use the abs function to obtain the absolute value using the TI-85 and TI-86. Example: Find |-6| • Press [2nd][MATH][F1][F5] • Input -6 • Press [ENTER] for the result For further information, please refer to the TI-85 or TI-86 Gui...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/10579

Solution 12113: Calculating 1-Variable Statistics with Frequencies on the TI-89 Family, TI-92 Plus and Voyage™ 200 Graphing Calculators.

...tc.  6) Enter the numbers for the frequencies under c2. Calculate the statistics: 1) Press [F5] for Calc. 2) Select 1:OneVar. 3) Scroll to the X... field and input c1. 4) Scroll to Use freq and Categories? and select. 2:YES. 5) Now, scroll to the Freq field and input c2. 6) Finally, press [E...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/12113

Solution 10352: Inputting Complex Numbers on the TI-85 or TI-86 Graphing Calculators.

... [(] [2] [<,] [5] [)])Please see the TI-85 and TI-86 guidebooks for additional information. {"commands":[{"click":"chrome:field:editcontrol({command:\"webedit:editlink\"})","header":"Edit link","icon":"/temp/iconcache/networkv2/16x16/link_edit.png","disabledIcon":"/tem...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/10352

Solution 10414: Calculating Linear Regressions on the TI-86.

...NTER] to perform the regression calculation. The calculator will display the form of the equation (y=a+bx) and then list the values for the two coefficients (a and b). It will also list a value for corr. This is a correlation coefficient, and it needs to be as close as possible to 1 to ensure a...
https://education.ti.com/en/customer-support/knowledge-base/other-graphing/product-usage/10414