Is it possible to factor on a Ti-83 Calcultor?

  • Thread starter Thread starter MoreZitiPlease
  • Start date Start date
  • Tags Tags
    Ti-83
AI Thread Summary
Factoring quadratic equations like x^2 + 24x + 80 on a TI-83 calculator is not straightforward, but it can be done using the quadratic formula to find roots. Users can input the equation into the calculator's equation solver to obtain solutions, which can then be used to factor the equation. Some participants suggest practicing factoring by hand instead of relying on calculators, emphasizing the importance of understanding the process. There are also discussions on programming the calculator to assist with factoring, though some methods may yield incorrect results if not set up properly. Ultimately, while calculators can assist, manual practice is encouraged for better comprehension of factoring.
MoreZitiPlease
Messages
107
Reaction score
0

Homework Statement


Like if I wanted to factor x^2 + 24x +80 {EXAMPLE}
Is this possible?


Homework Equations





The Attempt at a Solution

 
Physics news on Phys.org
This is definitely possible. What are some factors of 80 that will add to 24?

Edit:
Oh whoops I just saw that you were looking for factoring on Ti-83 calculator. But why would you want to do that when you can factor by hand? I don't think you can do it anyway.
 
Last edited:
because midterms are tomorrow and I am weak on factoring :)
 
Ok calculators suck. If you can't find factors to factor your function, then just use the quadratic formula.
 
You mean to say that you want to cheat, yourself and your teacher? Obviously the idea is to test your ability to factor, not your calculator's ability. Nothing cures the problem like a healthy dose of practice.
 
well practicing will make you more comfortable with them. Read up on the factor theorem also.

if my casio991MS can factor, the Ti-83 will probably be able to also.
 
You can just solve x^2 + 24x + 80 = 0 and once you have the solutions, use those to factor :)

E.g. quadratic formula gives
x_\pm = \frac{ - 24 \pm \sqrt{24^2 - 4 \cdot 80}}{2} = - 12 \pm 8 = -20, -4
So it factors as
(x + 20)(x + 4)

If you insist on doing it with the GC, you could use the equation solver...
$$ [0 (Solver)]

Enter the equation
(X^2 + 24X + 80)
and solve it (press Enter, Alpha + Enter (Solve))
You will get a solution, e.g. X = -4
Then divide out this solution from the original equation, so go back and enter
(X^2 + 24X + 80)/(X + 4)
(note the sign) -- now solve again and it will give you the other one.
Then you have again X = -4, X = -20, so it factors as
(X + 4)(X + 20)
 
start a new program and put these lines as your program
:Disp "Ax^2+BX+C"
:prompt A,B,C
:(B^2-(4AC))^(1/2)->D
:-B+D->E
:-B-D->F
:2A->A
:Disp "roots=",E/A,F/A
that will do the quadratic formula
 
What is this notation x_\pm, what does it mean?
 
  • #10
It means there are two solutions, which we denote by x_+ and x_- (might as well have called them x_1 and x_2, or x and y.
The first one is
x_1 = x_+ = \frac{ - b + \sqrt{D}}{2} (*)
and the other is
x_2 = x_- = \frac{ - b - \sqrt{D}}{2} (**)
where D is the usual discriminant
D = b^2 - 4 a c.

It is common to write the formulas (*) and (**) together in one line as
x_{1,2} = x_\pm = \frac{ - b \pm \sqrt{D}}{2}
where we mean: pick either the plus or the minus sign throughout.

The same notation also occurs in e.g.
\sqrt{4} = \pm 2
which means that +2 and -2 are both solutions, so shorthand for
\sqrt{4} = 2 \text{ or } -2.

(Aside, we also have an opposite symbol, which can be used in for example
"If x = \pm 1 then -2x = \mp 2"
which means both "if x then -2x = -2" and "if x = -2 then -2x = +2" simultaneously).
 
  • #11
TI-83...probably not. But you could graph the function and find the roots, which comes off pretty easy.
 
  • #12
Of course there's a way to do it. Like someone said earlier, you can just take the zeroes of the function and place the opposite of it in the "factored form". Just use a program to do the quadratic and multiply the answer by -1, and display "(X",D,")", and the same for the second value.

:Prompt A
:Prompt B
:Prompt C
sqrt. (B^2-4AC)->C
-B+C->D
-B-C->E
2A->A
-1D/A->D
-1E/A->E
D>Frac->D
E>Frac->E
:Disp "(X",D,")(X",E,")"

I just came up with this off the top of my head, so I haven't tested it. It might take a little tinkering, most likely in the display command (I can never seem to get those to work right when I'm using variables). It should work though. If it remains in decimal form, that means it can't be factored rationally. Otherwise, it's pretty self-explanitory.
 
  • #13
neofreakx2 said:
Of course there's a way to do it. Like someone said earlier, you can just take the zeroes of the function and place the opposite of it in the "factored form". Just use a program to do the quadratic and multiply the answer by -1, and display "(X",D,")", and the same for the second value.

:Prompt A
:Prompt B
:Prompt C
sqrt. (B^2-4AC)->C
-B+C->D
-B-C->E
2A->A
-1D/A->D
-1E/A->E
D>Frac->D
E>Frac->E
:Disp "(X",D,")(X",E,")"

I just came up with this off the top of my head, so I haven't tested it. It might take a little tinkering, most likely in the display command (I can never seem to get those to work right when I'm using variables). It should work though. If it remains in decimal form, that means it can't be factored rationally. Otherwise, it's pretty self-explanitory.


if you use this program;
:Prompt A
:Prompt B
:Prompt C
sqrt. (B^2-4AC)->C
-B+C->D
-B-C->E
2A->A
-1D/A->D
-1E/A->E
D>Frac->D
E>Frac->E
:Disp "(X",D,")(X",E,")"
you will get a incorrect answer use this
Set Mode To A+Bi
:Prompt A,B,C
:sqrt. (B^2-4AC)->C
:-B+C->D
:-B-C->E
:2A->A
:D/A->D
:E/A->E
:Disp "Roots",D>Frac,E>Frac
 
  • #14
why not just graph the function and find the x-intercepts...?
 
  • #15
by graph i meant sketch (on calculator) sorry for any misunderstandings caused. Also i agree with the other guys... Just do it by hand!
 
  • #16
Because for some reason, most people who aren't in a major involving math are too lazy. If you just have to put the numbers into the calculator, you don't even have to bother putting the graph function in and finding the zeroes.
 
Back
Top