473,386 Members | 1,720 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

What Math Is Needed for Programming?

I'm interesting in studying OOP programming languages on my own: C, C++,
Java. I haven't studied the big 4 math subjects in my last year of high
school, Calculus, Algebra, Geometry, Statistics. Which of these subjects
would I need to be able to understand some of more advanced concepts I may
encounter in my studies. Do I necessarily need any of them at all?

Thanks

PA
Jul 18 '05 #1
6 10904
Usually you don't need skills in math and statistics to learn OOP. However,
to come up with solutions to complex problems (depending on the nature of
the problem) you need math and statistics skills.

Kind regards,
AR
"Bibby" <bi***@hotmail.com> wrote in message
news:dT******************@news20.bellglobal.com...
I'm interesting in studying OOP programming languages on my own: C, C++,
Java. I haven't studied the big 4 math subjects in my last year of high
school, Calculus, Algebra, Geometry, Statistics. Which of these subjects
would I need to be able to understand some of more advanced concepts I may
encounter in my studies. Do I necessarily need any of them at all?

Thanks

PA

Jul 18 '05 #2
Bibby wrote:
I'm interesting in studying OOP programming languages on my own: C, C++,
Java. I haven't studied the big 4 math subjects in my last year of high
school, Calculus, Algebra, Geometry, Statistics. Which of these subjects
would I need to be able to understand some of more advanced concepts I may
encounter in my studies. Do I necessarily need any of them at all?

Thanks

PA

No!
Jul 18 '05 #3
krikol skrev:
Bibby wrote:
I'm interesting in studying OOP programming languages on my own: C,
C++, Java. I haven't studied the big 4 math subjects in my last year
of high school, Calculus, Algebra, Geometry, Statistics. Which of
these subjects would I need to be able to understand some of more
advanced concepts I may encounter in my studies. Do I necessarily need
any of them at all?


Depends highly on what your ambitions are. Apart from boolean algebra
(and, or, xor, not), number system (base2, ) and set theory, there is
not much math in a emperical language such as C++ and Java (Unlike
functional languages like Lisp, Haskell etc.)

/Casper
Jul 18 '05 #4

"Bibby" <bi***@hotmail.com> wrote in message
news:dT******************@news20.bellglobal.com...
I'm interesting in studying OOP programming languages on my own: C, C++,
Java. I haven't studied the big 4 math subjects in my last year of high
school, Calculus, Algebra, Geometry, Statistics. Which of these subjects
would I need to be able to understand some of more advanced concepts I may
encounter in my studies. Do I necessarily need any of them at all?

Thanks

PA


if you need the math knowledge to arrive at the solution (or to understand
the problem), then someone else would have to write that program. You can
write lots of programs with knowing lots of math, but if you cannot solve a
problem yourself, you can't write the program that solves it.
Go ahead and start learning to program - but also learn your math.
As a general rule, folks who are good at math, usually do well at learning
programming.
Jul 18 '05 #5
Bibby,

Please remember that the two purposes of a math class are to:
1. Teach you the math.
2. Teach you to think abstractly.

It's the second purpose that is primarily important for software
development.

But, as others have said, the first purpose may be necessary to solve
specific problems. I would definitely recommend some Discrete Mathematics,
which deals with set theory, logic (and, or, xor, etc.), trees, and graphs.
Set theory and logic come are a big part of interacting with databases
(especially in debugging your queries). Logic is always important in
functional programming languages. Trees and graphs can be important in
architecture, design, and general problem-solving.

Other specific math skills (e.g., geometry) may be important depending on
the domain you are programming in. For example, one problem I had to solve
recently involved finding the distance between two points on a map. The
Pythagorean (sp?) theorem from geometry saved my bacon there.

Good luck,
Brian

"Bibby" <bi***@hotmail.com> wrote in message
news:dT******************@news20.bellglobal.com...
I'm interesting in studying OOP programming languages on my own: C, C++,
Java. I haven't studied the big 4 math subjects in my last year of high
school, Calculus, Algebra, Geometry, Statistics. Which of these subjects
would I need to be able to understand some of more advanced concepts I may
encounter in my studies. Do I necessarily need any of them at all?

Thanks

PA

Jul 18 '05 #6
<posted & mailed>

Algebra for simple standard programming.
Geometry for graphics work.
Statistics for data analysis.
Calculus for games and simulations.

Bibby wrote:
I'm interesting in studying OOP programming languages on my own: C, C++,
Java. I haven't studied the big 4 math subjects in my last year of high
school, Calculus, Algebra, Geometry, Statistics. Which of these subjects
would I need to be able to understand some of more advanced concepts I may
encounter in my studies. Do I necessarily need any of them at all?

Thanks

PA


--
Remove '.nospam' from e-mail address to reply by e-mail
Jul 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

220
by: Brandon J. Van Every | last post by:
What's better about Ruby than Python? I'm sure there's something. What is it? This is not a troll. I'm language shopping and I want people's answers. I don't know beans about Ruby or have...
137
by: Philippe C. Martin | last post by:
I apologize in advance for launching this post but I might get enlightment somehow (PS: I am _very_ agnostic ;-). - 1) I do not consider my intelligence/education above average - 2) I am very...
12
by: xeys_00 | last post by:
I decided I need to understand math more to help me with programming. Not to mention, eventually in my degree plan I will need to do it anyway. How much math have people in this forum taken, and...
92
by: Dave Rudolf | last post by:
Hi all, Normally, I would trust that the ANSI libraries are written to be as efficient as possible, but I have an application in which the majority of the run time is calling the acos(...)...
15
by: Quackker12 | last post by:
is there a function in ansi c that does this? sigma(2^n/n!,0,infinity,n); syntax sigma(expression, start, end, variable); may be expression could be a function.... I know you can do this...
110
by: Gregory Pietsch | last post by:
I'm writing a portable implementation of the C standard library for http://www.clc-wiki.net and I was wondering if someone could check the functions in math.h for sanity/portability/whatever. I'm...
669
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Language”, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic...
0
by: Dawoodoz | last post by:
I am programming with prim numbers in VB6.0 and need a much faster and more accurate function to get the rest and quota of A and B. In StandardML, the words DIV and MOD are exactly the kind of...
16
by: SirG | last post by:
I'm looking for an explanation of why one piece of code works and another does not. I have to warn you that this is the first piece of Javascript I've ever written, so if there is a better way or a...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.