A few days ago
mamionamission

How do Computer Scientists use algebra on a daily basis?

Why is algebra so important to computer scientists? I have been researching this profession and I see that a lot of infasis is placed on algebra, but how does a computer scientist use it on a daily basis that makes it so important for this profession?

Top 2 Answers
A few days ago
blueskies

Favorite Answer

http://en.wikipedia.org/wiki/Symbolic_mathematics

http://www.aucegypt.edu/conferences/algebra/

0

A few days ago
historian
Let’s talk about computer programmers, not scientists, which I think is what you mean.

So to multiply two numbers in computer code, you would write something like

Input x

Input y

Output=x*y

If you didn’t know that x could be any number and y could be any number, you would have to write the multiplication tables for every number you could think of, and wait a long time for the computer to search the data for the exact two numbers you wanted to multiply.

That’s a simple example, but the point is this: Algebra is the math that lets any letter substitute for a number — any number. A different letter can mean any other number. You can input any number for x, any number for y, any number for z, and tell the computer what to do with those numbers, however complicated the math is.

If you don’t know algebra, you can’t figure out what the computer should do with the numbers you want to fool around with.

0