Best books to study during summer related to programming?

In summary, the speaker has 10 years of programming experience and wants to move into more theoretical fields for a hobby. They plan on dedicating 4 months of their summer to studying mathematics for 8 hours a day. Their goal is to become better at programming algorithms, but they feel that mathematics is standing in their way. They have a detailed plan for the books they want to read, including How to Prove It, Spivak Calculus, a book on probability and combinatorics, and Introduction to Algorithms. Other members suggest limiting the number of books and focusing on understanding the material instead of perfectionism in coding. They also recommend finding a book on numerical methods for algorithms related to calculus and a book on linear algebra for algorithms related
  • #1
256
18
I've been programming for 10 years and have done many free lance projects. I know basic mathematics (what an engineering student would know) but I want to move into more theoretical fields for a hobby. I am devoting 4 months of my summer this year to studying mathematics. I will be studying for 8 hours a day on average.

My goal is to become better at programming algorithms, and the only thing that stands in my way is mathematics. (I already know how to program in general, i.e. object oriented, functional, procedural, basic algorithms & data structures, knowledge of many libraries and frameworks and other necessary topics like multithreading, debugging, etc etc)

My plan for the summer is as follows. I would like suggestions from members here on how I can best use my short time.

-Read How to prove it: a structured approach <--- 100%
-Read spivak calculus <-- will probably skip some of late chapters, after integration finishes
-Read a book on probability/combinatorics <--- 100%
-Read Introduction to Algorithms <-- probably won't have time to finish 100% of this book

Any advice for me, recommendations, tips, alternatives?
 
Physics news on Phys.org
  • #2
Your summer sounds to ambitious. I would limit to two books. How to prove it and spivak.
 
  • #3
I'm studying electrical engineering and I'm a bit more of a math person than a programming person, but I think a book on lambda calculus might interest you if you're looking for pure math stuff more on the side of CS. I've been teaching myself the last 2 months, and while it hasn't necessarily taught me anything about programming techniques directly it certainly has given me some really interesting new ways to think about computers and programs and I have noticed my fluency with programming improve a fair amount as a result.

Princeton does a two-part open online course series about algorithms on Coursera a few times a year, they may have a summer session: https://www.coursera.org/course/algs4partI

I would put off learning combinatorics and learn some discrete math first.
 
  • #4
MidgetDwarf said:
Your summer sounds to ambitious. I would limit to two books. How to prove it and spivak.

True. I planned on reading those two books first. But I know with a larger load I'd be pressured to work harder/longer and could quite possibly finish 3-4 books if I can keep at it for 8~ hours a day.

jack476 said:
I'm studying electrical engineering and I'm a bit more of a math person than a programming person, but I think a book on lambda calculus might interest you if you're looking for pure math stuff more on the side of CS. I've been teaching myself the last 2 months, and while it hasn't necessarily taught me anything about programming techniques directly it certainly has given me some really interesting new ways to think about computers and programs and I have noticed my fluency with programming improve a fair amount as a result.

Princeton does a two-part open online course series about algorithms on Coursera a few times a year, they may have a summer session: https://www.coursera.org/course/algs4partI

I would put off learning combinatorics and learn some discrete math first.

Interesting. I've dabbled with Haskell, apparently it's pure lambda calculus. But I think that learning more discrete math would be more useful for me than lambda calculus- but i'll definately add it to my TODO list.

Thanks
 
  • #5
Just make sure that understanding is key. I usto rush through books but I noticed spending a bit more time on just 2 books helped my understanding a lot more.

You could also just study yow to prove it and tackle Rudin. at least that is what my physics friend did.

Have you taken a discrete math course?
 
  • #6
MidgetDwarf said:
Just make sure that understanding is key. I usto rush through books but I noticed spending a bit more time on just 2 books helped my understanding a lot more.

You could also just study yow to prove it and tackle Rudin. at least that is what my physics friend did.

Have you taken a discrete math course?

Nope. Never taken any discrete math before.
 
  • #7
How to prove it and discrete math would be the better investment imo. Discrete math has a lot of applications in cs. However, discrete math can be frustrating.
 
  • #9
x86 said:
My goal is to become better at programming algorithms, and the only thing that stands in my way is mathematics.

What kind of algorithms do you want to program?

I've looked through the textbook on algorithms that students at the local university use. It emphasizes things like sorting and hashing. It doesn't go much into algorithms related to calculus. For algorithms related to calculus, you would need a book on "numerical methods".

The algorithms related to calculus are a different field than the algorithms related to linear algebra. For algorithms related to linear algebra look at books like "Matrix Computations" by Golub and Van Loan.
-Read How to prove it: a structured approach <--- 100%
-Read spivak calculus <-- will probably skip some of late chapters, after integration finishes
I've often seen those books recommended but I don't know if they emphasize algorithms.

-Read a book on probability/combinatorics <--- 100%

Try to find a probability book that emphasizes simulations.

The book "Constructive Combinatorics" by Stanton and White https://www.amazon.com/dp/B000PC10BG/?tag=pfamazon01-20 is short and emphasizes algorithms

-Read Introduction to Algorithms <-- probably won't have time to finish 100% of this book

In 4 months, you probably won't have time to cover a quarter of the material you listed.

Programming can be a valuable aid to learning mathematics, but if the goal is to learn the mathematics, don't get distracted by irrelevant perfectionism in coding - such as improving the appearance of a graph, making a interface look fancy. Just use programs to understand the math.
 
  • #10
Stephen Tashi said:
What kind of algorithms do you want to program?

I've looked through the textbook on algorithms that students at the local university use. It emphasizes things like sorting and hashing. It doesn't go much into algorithms related to calculus. For algorithms related to calculus, you would need a book on "numerical methods".

The algorithms related to calculus are a different field than the algorithms related to linear algebra. For algorithms related to linear algebra look at books like "Matrix Computations" by Golub and Van Loan.
I've often seen those books recommended but I don't know if they emphasize algorithms.
Try to find a probability book that emphasizes simulations.

The book "Constructive Combinatorics" by Stanton and White https://www.amazon.com/dp/B000PC10BG/?tag=pfamazon01-20 is short and emphasizes algorithms
In 4 months, you probably won't have time to cover a quarter of the material you listed.

Programming can be a valuable aid to learning mathematics, but if the goal is to learn the mathematics, don't get distracted by irrelevant perfectionism in coding - such as improving the appearance of a graph, making a interface look fancy. Just use programs to understand the math.

Thanks, I'll check the book out if I'm able to work according to schedule. I don't see why I won't be able to cover at least 5 books in the summer, most of my semesters are 4 months long and have me learning 5-7 books in this time
 

1. What are the best books to study during summer related to programming?

Some of the best books to study during summer related to programming include "Cracking the Coding Interview" by Gayle Laakmann McDowell, "Code Complete" by Steve McConnell, "Clean Code" by Robert C. Martin, "JavaScript: The Good Parts" by Douglas Crockford, and "Head First Design Patterns" by Eric Freeman and Elisabeth Robson.

2. Why should I study programming books during summer?

Summer is a great time to study programming books because you may have more free time with school or work commitments on hold, the weather is nice so you can study outside, and you can take advantage of summer sales and discounts on books.

3. How can I choose the right programming book to study during summer?

To choose the right programming book to study during summer, consider your current skill level, your learning goals, and your preferred programming language. It's also helpful to read reviews and ask for recommendations from other programmers.

4. Are there any online resources or e-books available for programming study during summer?

Yes, there are many online resources and e-books available for programming study during summer. Some popular options include Codecademy, Coursera, Udemy, and eBooks.com.

5. Can I study multiple programming books at once during summer?

It is possible to study multiple programming books at once during summer, but it may be overwhelming and hinder your learning progress. It's recommended to focus on one book at a time and fully understand the concepts before moving on to the next one.

Similar threads

  • Science and Math Textbooks
Replies
2
Views
1K
Replies
4
Views
782
  • Science and Math Textbooks
Replies
4
Views
2K
  • Science and Math Textbooks
Replies
7
Views
2K
  • Science and Math Textbooks
Replies
18
Views
2K
  • Science and Math Textbooks
Replies
13
Views
2K
  • Science and Math Textbooks
Replies
4
Views
3K
  • Science and Math Textbooks
Replies
1
Views
1K
  • Science and Math Textbooks
Replies
20
Views
5K
  • Science and Math Textbooks
Replies
28
Views
3K
Back
Top