QJ.NET | Videos | Forums | iPhone | MMORPG | Nintendo DS | Wii | PlayStation 3 | PSP | Xbox 360 | PC | Downloads | Contact Us
Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact

QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides

Go Back   QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides > Consumer > General PC Forums > Everything Windows
The above video goes away if you are a member and logged in, so log in now!

calc question

This is a discussion on calc question within the Everything Windows forums, part of the General PC Forums category; how would i program my ti calculator to do the quadratic formula for me?...

Reply
 
LinkBack Thread Tools
Old 02-14-2006, 04:44 PM   #1
 
Join Date: Jul 2005
Posts: 1,562
Trader Feedback: 0
Default calc question

how would i program my ti calculator to do the quadratic formula for me?
Simpson17 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 05:08 PM   #2
 
Join Date: Jul 2005
Posts: 1,562
Trader Feedback: 0
Default

heres the formula i want it to do for me -
x = (-b+√b²-4ac)/2a
x = (-b-√b²-4ac)/2a

and √ is the square root symbol

it would also be cool if it could do -
y=ax²+bx+c

because thats what i need to know for some packet hes giving us... and its on my homework which i have to turn in soon, and i havent done any of it for the past week and a half ><
Simpson17 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 05:19 PM   #3
 
Teowulf's Avatar
 
Join Date: Aug 2005
Location: Boston
Posts: 4,915
Trader Feedback: 0
Default

Quote:
Originally Posted by Simpson17
heres the formula i want it to do for me -
x = (-b+√b²-4ac)/2a
x = (-b-√b²-4ac)/2a

and √ is the square root symbol

it would also be cool if it could do -
y=ax²+bx+c

because thats what i need to know for some packet hes giving us... and its on my homework which i have to turn in soon, and i havent done any of it for the past week and a half ><
Just hit the program button, then hit new, then type it in.

First say
Prompt A
Prompt B
Prompt C

Then do the formula.
Teowulf is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 05:37 PM   #4
 
FrozenIpaq's Avatar
 
Join Date: Jun 2005
Posts: 2,986
Trader Feedback: 0
Default

Ah, Ti 83's are not that great for programming in basic.

In a TI 86 it would be:

Input "A value: ",A
Input "B value: ",B
Input "C value: ",C
Menu (1, "Add", Add, 2, "Subtract", Sub, 3, "Exit" Exit)
Lbl Add
B*B-->B2
4*A*C-->C2
B2-C2-->D
√D-->D2
D2+(-B)-->D3
D3/(2*A)-->D4
Disp D4
Menu (1, "Again" Add, 2, "Subtract" Sub, 3, "Exit" Exit)
Lbl Sub
B*B-->B2
4*A*C-->C2
B2-C2-->D
√D-->D2
D2-(-B)-->D3
D3/(2*A)-->D4
Disp D4
Menu (1, "Add", Add, 2, "Again", Sub, 3, "Exit" Exit)
Lbl Exit
End


Well, I can't remember the exact setup of the menu function, but that is all from my horrible memory
FrozenIpaq is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 05:45 PM   #5
 
Teowulf's Avatar
 
Join Date: Aug 2005
Location: Boston
Posts: 4,915
Trader Feedback: 0
Default

Quote:
Originally Posted by FrozenIpaq
Ah, Ti 83's are not that great for programming in basic.

In a TI 86 it would be:

Input "A value: ",A
Input "B value: ",B
Input "C value: ",C
Menu (1, "Add", Add, 2, "Subtract", Sub, 3, "Exit" Exit)
Lbl Add
B*B-->B2
4*A*C-->C2
B2-C2-->D
√D-->D2
D2+(-B)-->D3
D3/(2*A)-->D4
Disp D4
Menu (1, "Again" Add, 2, "Subtract" Sub, 3, "Exit" Exit)
Lbl Sub
B*B-->B2
4*A*C-->C2
B2-C2-->D
√D-->D2
D2-(-B)-->D3
D3/(2*A)-->D4
Disp D4
Menu (1, "Add", Add, 2, "Again", Sub, 3, "Exit" Exit)
Lbl Exit
End


Well, I can't remember the exact setup of the menu function, but that is all from my horrible memory
Whoa. You don't ahve to do all of that for a Ti-86. It only takes 5 lines of program for it.
Teowulf is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 05:48 PM   #6
 
foXtrot's Avatar
 
Join Date: Jul 2005
Location: Electro World
Posts: 2,559
Trader Feedback: 0
Default

I remember coding so many things for my TI-83 and writing chemistry or physics notes and "using" my calculator... I coded practically every formula/theorem I ever did in math. My programs were a great success and I was also the main distributor of apps in my school. Why I never genenrated a profit from it? Maybe I should have...
__________________
I R homaki on [URL=http://forums.**********.net/]M4M[/URL] i.e. im not on QJ for anything anymore.
foXtrot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 06:07 PM   #7
 
Join Date: Jul 2005
Posts: 1,562
Trader Feedback: 0
Default

Quote:
Originally Posted by billythekilly
Just hit the program button, then hit new, then type it in.

First say
Prompt A
Prompt B
Prompt C

Then do the formula.
could u type the entire thing out for me with the progs i listed.. sry i dont know how to program at all with the calc and havent read the manual to it yet.. all i know how to do is the disp command.
Simpson17 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 06:08 PM   #8
 
FrozenIpaq's Avatar
 
Join Date: Jun 2005
Posts: 2,986
Trader Feedback: 0
Default

Quote:
Originally Posted by billythekilly
Whoa. You don't ahve to do all of that for a Ti-86. It only takes 5 lines of program for it.
Well, if you want to get it right and look good and have accurate results, that's the best way to go

PS: Do not try to make an Age Calc for yourself..I made one that told you how old you are in days (exactly, but not counting the hours) and it took me forever to find a correct algorithm to be usable..but I lost all my code when the batteries died out
FrozenIpaq is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-14-2006, 06:09 PM   #9
 
Join Date: Jul 2005
Posts: 1,562
Trader Feedback: 0
Default

also would i like go Prompt A

and for a use the alpha key and use the letter.. or is there an actual way to do it (sort of like using l1) and when i do my formula, its the smae thing.. do i jus type in a b and c... because i dont see any simple way to do this, except for itd take some time to sort out a command just doing it with X.
Simpson17 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
calc , question

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -8. The time now is 07:42 PM.



Use of this Web site constitutes acceptance of the TERMS & CONDITIONS and PRIVACY POLICY
Copyright © 2009, QJ.NET. All Rights Reserved.
Contact Us