Help with Michael Spivak's fourth edition calculus book

In summary, the conversation discusses difficulties with solving problems in Michael Spivak's fourth edition calculus book and advice for approaching them. The student is a first year computer science student with some experience in proofs and high school calculus. The book's first chapter is vague and the student is unsure of what is being asked, particularly with a problem involving the absolute value function. Suggestions are made to first study proofs and use a Schaum's outline book before attempting the problems in Spivak's book.
  • #1
solar nebula
14
0
Hi,
I am having difficulties doing the problems in Michael Spivak's fourth edition calculus book.
I am not sure how to approach the problems. I am able to understand the contents chapters but when I start to do the chapter problems, I have no idea how to do them.Any advice will be appreciated.By the way I am a first year student.

Thanks.
 
Physics news on Phys.org
  • #2
You're a first year student in what? Music? Physics? It would be helpful if you could provide more details. It's impossible to properly help you when we have nothing to work with. What courses have you taken before? Do you have experience with proofs and proof techniques? How much calculus do you already know?
 
  • #3
Spivak does indeed have quite difficult exercises. They're very worthwhile to solve, but they can be hard. I suggest getting perhaps a Schaum's outline and make exercises from that book first. These are the ones you actually need.
 
  • #4
I have the same question

The book's first chapter is very vague. Not that the information is vague but I don't really know what they are asking for. For example, they ask something like
prove that
lXYl = lXl x lYl

...what am I supposed to say, in what kind of form?
In high school, the only thing that was similar to this was trig identity where you had to say left side equals right side
 
  • #5
DivisionByZro said:
You're a first year student in what? Music? Physics? It would be helpful if you could provide more details. It's impossible to properly help you when we have nothing to work with. What courses have you taken before? Do you have experience with proofs and proof techniques? How much calculus do you already know?

I am a computer science student.The only proofs I have done is trigonometric proofs, when you show one side is equal to the other side. I have done high school calculus and functions, I know them well. Spivak's kind of math is the kind of math I want to learn, because it's no longer just plugging in, but using your brain.

Thanks.
 
  • #6
micromass said:
Spivak does indeed have quite difficult exercises. They're very worthwhile to solve, but they can be hard. I suggest getting perhaps a Schaum's outline and make exercises from that book first. These are the ones you actually need.

Can you please let me know the title of the Schaum's outline book? Thanks.
 
  • #7
You should check out a book on proofs before trying the problems in Spivak. It's not necessary, but it would be beneficial.

Try How to Prove It: A Structured Approach by Velleman.
 
  • #8
intwo said:
You should check out a book on proofs before trying the problems in Spivak. It's not necessary, but it would be beneficial.

Try How to Prove It: A Structured Approach by Velleman.

Thanks, I'll check it out.
 
  • #9
arpeggio said:
I have the same question

The book's first chapter is very vague. Not that the information is vague but I don't really know what they are asking for. For example, they ask something like
prove that
lXYl = lXl x lYl

...what am I supposed to say, in what kind of form?
In high school, the only thing that was similar to this was trig identity where you had to say left side equals right side

Don't worry, these seemingly trivial type problems were also confusing to me not long ago. I imagine many students have similar troubles. The more you are exposed to proof based math the more you will begin to understand what he's asking for.

To answer your question, you could approach this this of problem in two ways. The first is to show that the left side is less than or equal to the right side, and also that the right side is less than or equal to the left side. Thus you can then conclude that they must be equal. Not to say this is the best approach for this specific problem, but this is a very common method for showing equality.

The second would be to break it down on a case by case basis and show equality always holds. For example, case 1: when both x,y nonnegative. Case 2: x nonnegative, y negative...etc etc etc

Also, an important thing to take from this problem is to make sure you know the definition of the absolute value function. Can you state the absolute value function from R to R?
 
Last edited:
  • #10
diligence said:
Don't worry, these seemingly trivial type problems were also confusing to me not long ago. I imagine many students have similar troubles. The more you are exposed to proof based math the more you will begin to understand what he's asking for.

To answer your question, you could approach this this of problem in two ways. The first is to show that the left side is less than or equal to the right side, and also that the right side is less than or equal to the left side. Thus you can then conclude that they must be equal. Not to say this is the best approach for this specific problem, but this is a very common method for showing equality.

The second would be to break it down on a case by case basis and show equality always holds. For example, case 1: when both x,y nonnegative. Case 2: x nonnegative, y negative...etc etc etc

Also, an important thing to take from this problem is to make sure you know the definition of the absolute value function. Can you state the absolute value function from R to R?

Hopefully I will get it too. Thanks for your response
What is R to R ?
 
  • #11
R, or more properly [itex]\mathbb{R}[/itex] is a common abbreviation for the set of real numbers.

half the battle in proving something like:

|xy| = (|x|)(|y|)

is knowing "what it is" you are proving.

so you need to be clear about what |x| MEANS.

what you are proving is:

path a: take two real numbers x,y ----> multiply them together----->take the absolute value

path b: take two numbers x,y----->take the absolute value of each one---->multiply the two absolute values together

start at end "at the same places".

with absolute value, the DEFINITION is:

|x| = x, if x ≥ 0
|x| = -x, if x < 0.

since the definition of |x| is in "two cases", you will have FOUR cases (one for each possible combination of the cases for x and y) for your proof:

a) x, y ≥ 0
b) x ≥ 0, y < 0
c) x < 0, y ≥ 0
d) x,y < 0

here is "one" possible way to handle case (b):

if x ≥ 0, y < 0, then either x = 0, and thus |xy| = |0y| = |0| = 0 = 0|y| = |0|*|y| = |x|*|y|, or:

xy < 0, so that |xy| = -xy = x(-y) = |x|*(-y) = |x|*|y|.

it may prove troublesome to make a separate "case within a case" when either x or y (or both) ≥ 0, so you might prefer to make the following five cases:

a) x,y > 0
b) x > 0, y < 0
c) x < 0, y > 0
d) x,y < 0
e) either x or y, or both = 0

since "case by case" proofs are awkward (and rather long), anything we can prove about absolute values that let's us "forget about the individual cases", is helpful, as it simplifies further work later on.
 
Last edited:
  • #12
^Thanks, kind of get the idea now
proving is pretty intense
 
  • #13
Spivak is a great book ... I really appreciate his weird easter eggs. need to buy a new copy.

what's your purpose for reading it as a 1st yr in the middle of Dec? i assume you are following it on your own since o/w you would have asked in Sep. if you want to study math at this level, now (as a 1st year ug) is the time to take courses not self study ... any (competent) introductory level proof-based calculus class will teach you how to do proofs etc. i'd be surprised if you could pick up spivak with no proof experience and no guidance and get much out of it. why not just take a class instead of embarking on a massive self study mission?
 
  • #14
Thanks for elaborating Deveno
arpeggio said:
proving is pretty intense

Yep, tell me about it ;) I just finished taking graduate analysis and it was by far the most challenging academic experience of my career.
 
  • #15
dudebroIII said:
Spivak is a great book ... I really appreciate his weird easter eggs. need to buy a new copy.

what's your purpose for reading it as a 1st yr in the middle of Dec? i assume you are following it on your own since o/w you would have asked in Sep. if you want to study math at this level, now (as a 1st year ug) is the time to take courses not self study ... any (competent) introductory level proof-based calculus class will teach you how to do proofs etc. i'd be surprised if you could pick up spivak with no proof experience and no guidance and get much out of it. why not just take a class instead of embarking on a massive self study mission?

Well, I had taken a course in first semester(in which we used Spivak's book).Then dropped it and will be taking it in the second semester . Now that I have bit of time before second semester, I just want get a bit comfortable with proofs. Intwo said to try "How to Prove It: A Structured Approach by Velleman". So I am currently going through it.
 
Last edited:

1. What is the difficulty level of Michael Spivak's fourth edition calculus book?

The difficulty level of this book is considered to be advanced. It is often used in honors and advanced placement courses in high school, as well as in university-level calculus courses.

2. Are there any prerequisites for using this book?

Yes, it is recommended that students have a strong foundation in algebra, trigonometry, and basic calculus concepts before using this book.

3. Does the book provide solutions to the exercises?

Yes, the book does provide solutions to selected exercises at the end of each chapter. However, it is important to try to solve the exercises on your own before checking the solutions.

4. Is it suitable for self-study or is it better to use it in a classroom setting?

This book can be used for both self-study and in a classroom setting. It is recommended to have a solid understanding of the material before attempting to use it for self-study.

5. Are there any online resources or study aids available for this book?

Yes, there are various online resources and study aids available for this book, including study guides, practice problems, and video lectures. These can be helpful supplements to aid in understanding the material.

Similar threads

  • STEM Academic Advising
Replies
9
Views
1K
  • STEM Academic Advising
Replies
16
Views
407
  • STEM Academic Advising
Replies
3
Views
1K
Replies
7
Views
859
  • STEM Academic Advising
Replies
15
Views
2K
  • STEM Academic Advising
Replies
5
Views
798
  • STEM Academic Advising
Replies
18
Views
2K
  • Science and Math Textbooks
Replies
7
Views
2K
  • STEM Academic Advising
Replies
1
Views
909
  • STEM Academic Advising
Replies
4
Views
865
Back
Top