forked from prakhar625/huberman-podcasts-transcripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path66__transcript.txt
8389 lines (8389 loc) · 228 KB
/
66__transcript.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- Welcome to the Huberman Lab Podcast,
where we discuss science
and science-based tools
for everyday life.
I'm Andrew Huberman,
and I'm a professor of
neurobiology and ophthalmology
at Stanford School of Medicine.
Today my guest is Dr. Andy Galpin.
Dr. Galpin is a full and tenured professor
in the department of kinesiology
at California State
University in Fullerton.
He is also a world expert
in all things exercise
science and kinesiology.
Today, you are going to
hear what is essentially
a masterclass in how to build fitness,
no matter what level of
fitness you happen to have.
He talks about how to build endurance,
and the multiple types of endurance.
He talks about how to build
strength and hypertrophy,
which is the growth of muscle fibers.
So if you're seeking to get stronger,
or build bigger muscles,
or build endurance,
or all of those things, today
you're going to learn how.
You're also going to learn
how to build flexibility,
how to hydrate properly for exercise.
And we'll also talk about
nutrition and supplementation.
What makes Dr. Galpin so unique
is his ability to span all
levels of exercise science.
He has the ability to clearly communicate
the sets and repetition schemes
that one would want to follow,
for instance, to build more strength
or to build larger muscles.
He also clearly describes
exactly how to train
if you want to build more endurance,
or enhance cardiovascular function.
What's highly unique about Dr. Galpin
and the information he teaches,
and the way he communicates
that information,
is that he can take
specific recommendations
of how recreational exercisers,
or even professional
athletes ought to train
for their specific goals,
and link that to specific mechanisms.
That is the specific
changes that need to occur
in the nervous system
and in muscle fibers,
and indeed right down to the
genetics of individual cells
in your brain and body,
in order for those exercise
adaptations to occur.
It's truly rare to find
somebody that can span
so many different levels of analyses,
and who is able to communicate
all those levels of understanding
in such a clear and actionable way.
Indeed, Dr. Galpin is one
of just a handful of people
to which I and many others look
when they want to make sure
that the information that
they're getting about exercise
is gleaned from quality
peer-reviewed studies,
hands-on experience
with a wide variety of research subjects,
meaning everyday people
all the way up to professional athletes
in a wide variety of sports.
So it's no surprise that he's not only
one of the most knowledgeable,
but also the most trusted
voices in exercise science.
Dr. Galpin is also an avid communicator
of zero cost to consumer
information about exercise science.
You can find him on
Instagram at Dr. Andy Galpin,
and also on Twitter at Dr. Andy Galpin.
Both places he provides
terrific information
about recent studies,
both from his laboratory
and from other laboratories,
more in depth protocols of the sort
that you'll hear about today.
So if you're not already
following him, be sure to do so.
He provides only the best information.
He's extremely nuanced
and precise and clear
in delivering that information.
I'm certain that by the end
of today's conversation,
you'll come away with a
tremendous amount of new knowledge
that you can devote to
your exercise pursuits.
I'm pleased to announce
that I'm hosting two live events this May.
The first live event will be
hosted in Seattle, Washington
on May 17th.
The second live event will
be hosted in Portland, Oregon
on May 18th.
Both are part of a lecture series entitled
"The Brain Body Contract",
during which I will discuss
science and science-based tools
for mental health, physical
health, and performance.
I should point out that
while some of the material I'll cover
will overlap with information covered here
on the "Huberman Lab Podcast",
and on various social media posts,
most of the information I will
cover is going to be distinct
from information covered on
the podcast or elsewhere.
So once again, it's Seattle on May 17th,
Portland on May 18th.
You can access tickets by
going to hubermanlab.com/tour.
And I hope to see you there.
Before we begin, I'd like to
emphasize that this podcast
is separate from my teaching
and research roles at Stanford.
It is however, part of
my desire and effort
to bring zero cost to consumer information
about science and science-related tools
to the general public.
In keeping with that theme,
I'd like to thank the
sponsors of today's podcast.
Our first sponsor is Athletic Greens.
Athletic Greens is an all-in-one
vitamin mineral probiotic drink.
I've been taking Athletic
Greens since 2012,
so I'm delighted that they're
sponsoring the podcast.
The reason I started
taking Athletic Greens
and the reason I still
take Athletic Greens
once or twice a day,
is that it helps me cover all
of my basic nutritional needs.
It makes up for any
deficiencies that I might have.
In addition, it has probiotics
which are vital for microbiome health.
I've done a couple of episodes now
on the so-called gut microbiome
and the ways in which
the microbiome interacts
with your immune system, with
your brain, to regulate mood,
and essentially with
every biological system
relevant to health throughout
your brain and body.
With Athletic Greens, I
get the vitamins I need,
the minerals I need, and the probiotics
to support my microbiome.
If you'd like to try Athletic Greens,
you can go to athleticgreens.com/huberman,
and claim a special offer.
They'll give you five free travel packs,
which make it easy to
mix up Athletic Greens
while you're on the road,
plus a year's supply of vitamin D3 K2.
There are a ton of data now showing that
vitamin D3 is essential
for various aspects of
our brain and body health.
Even if we're getting a lot of sunshine,
many of us are still
deficient in vitamin D3.
And K2 is also important
because it regulates things like
cardiovascular function,
calcium in the body, and so on.
Again, go to athleticgreens.com/huberman
to claim the special offer
of the five free travel packs
and the year's supply of vitamin D3 K2.
Today's episode is also
brought to us by Thesis.
Thesis makes what are called nootropics,
which means smart drugs.
Now, to be honest, I am not
a fan of the term nootropics.
I don't believe in smart drugs
in the sense that I don't believe
that there's any one substance
or collection of substances
that can make us smarter.
I do believe, based on science however,
that there are particular neural circuits
and brain functions that
allow us to be more focused,
more alert, access creativity,
be more motivated, et cetera.
That's just the way that the brain works.
Different neural circuits
for different brain states.
And so the idea of a nootropic
that's just going to make us
smarter all around,
fails to acknowledge that
smarter is many things, right?
If you're an artist, you're a
musician, you're doing math,
you're doing accounting,
a different part of the day
you need to be creative,
these are all different brain processes.
Thesis understands this.
And as far as I know, they're
the first nootropics company
to create targeted nootropics
for specific outcomes.
They only use the highest
quality ingredients,
which of course is essential.
Some of those I've talked
about on the podcast,
things like DHA, Ginko
biloba, phosphatidylserine.
They give you the ability to
try several different blends
over the course of a month,
discover which nootropics work best
for your unique brain chemistry
and genetics and goals,
and with that personalization,
design a kit of nootropics
that's ideal for the different
brain and body states
you want to access.
I've been using Thesis for
more than six months now,
and I can confidently
say that their nootropics
have been a total game-changer.
My go-to formula is the clarity formula,
or sometimes I'll use their
energy formula before training.
To get your own personalized
nootropic starter kit,
go online to takethesis.com/huberman,
take a three minute quiz,
and Thesis will send you
four different formulas
to try in your first month.
That's takethesis.com/huberman,
and use the code Huberman at checkout
for 10% off your first order.
Today's episode is also brought
to us by Inside Tracker.
Inside Tracker is a
personalized nutrition platform
that analyzes data from
your blood and DNA,
to help you better understand your body
and help you reach your health goals.
I've long been a believer
in getting regular blood work done,
for the simple reason
that many of the factors
that impact your immediate
and long-term health
can only be assessed with
a quality blood test.
What's unique about Inside Tracker is that
while there are a lot of
different tests out there
for hormones and metabolic
factors, et cetera,
with Inside Tracker,
you get the numbers back
in terms of your levels,
but they also give you
very clear directives
in terms of lifestyle,
nutrition and supplementation,
that can help you bring
those values into the ranges
that are best for you
and your health goals.
And that's very different than
a lot of the other programs,
where you get a lot of information,
but you don't really know what
to do with that information.
Inside Tracker makes that
all very easy to understand
and very actionable, based on
the very easy to use dashboard
at Inside Tracker.
If you'd like to try Inside Tracker,
you can visit insidetracker.com/huberman,
to get 20% off any of
Inside Tracker's plans.
Just use the code Huberman at checkout.
And now for my discussion
with Dr. Andy Galpin.
Welcome Dr. Professor Andy Galpin.
It's been a long time coming.
We have friends in common,
but this is actually the
first time we've sat down
face-to-face.
- Yeah, I'm very excited.
- Yeah, there are only a handful,
meaning about three or four people,
who I trust enough in the
exercise physiology space,
that when they speak, I not only listen,
but I modify my protocols,
and you are among those
three or four people.
So first of all, a debt
of gratitude, thank you.
You've greatly shaped
the protocols that I use.
And I know there's far more
for me and for others to learn.
So you're a professor,
you teach in university,
and you have a tremendous
range of levels of exploration.
Muscle biopsy, literally
images down the microscope,
all the way to training
professional athletes
and everything in between.
So you are truly an N-of-1.
And just to start us off,
I would love to have you share with us
what you think most everybody,
or even everybody should know,
about principles of strength training,
principles of endurance
training, and principles of,
let's call it hypertrophy power
and the other sort of
categories of training.
And this could be very top contour.
But what do you think everybody
on planet Earth should know
about these categories of
personal and athletic development?
- Well, that's a great first question.
Holy cow!
I think I'll start it this way.
I tend to think about,
there's about nine different adaptations
you can get from exercise.
Fat loss is not one of those.
It is a byproduct.
But that's not really what I'm getting at.
And so we can kind of
categorize everything like that.
And what we're going
to, we can talk about,
or what are the concepts
that you need to hit
within each one.
And then you could have
infinite discussion
of the different methodologies, right?
And so that first thing to hit is
the concepts are actually fairly few,
but the methods are many, right?
People have said that in
iterations throughout time.
So if you walk from the very beginning,
the first one to think about
is what we'll just call skill.
So this is improving anything
from say a golf swing,
to a squatting technique, to running.
And this is just simply
moving mechanically,
how you want your body to move.
I'm just going to
globally call that skill.
From there, we're going to get into speed.
So this is moving as fast as possible.
The next one is power, and
power is a function of speed,
but it is also a function of the next one,
which is strength.
So if you actually
multiply strength by speed,
you get power.
And the reason I'm making this
distinction by the way is,
some of these are very close,
and I'm going in a specific
order on purpose here.
For example, power is, like I just said,
it's a function of speed and strength.
So if you improve speed, you've
also likely improved power.
But not necessarily, right,
'cause it could've come from
the force direction either.
So there's carryover,
so like a lot of things that you would do
for the development of strength and power,
they are somewhat similar,
but then there's differences, right?
So things that you would
do correctly for power
would really not develop much
strength, and vice versa.
So we can get into all
these details later.
Once you get past strength,
and the next one kind of
down the list is hypertrophy,
this is muscle size, right?
Growing muscle mass is
one way to think about it.
After hypertrophy, you get
into these categories of,
the next one is,
these are all globally
endurance-based issues.
And the very first one is
called muscular endurance.
So this is your ability to do
how many pushups can you do
in one minute?
You know, things like that.
Past muscular endurance,
you're now into more of an energetic
or even cardiovascular fatigue.
So you've left the local muscle,
and you're now into the
entire physiological system,
and its ability to
produce and sustain work.
And we can get into a
bunch of differentiations
with an endurance,
but just to keep it
really simple right now,
the very first one, think about this as,
I call this anaerobic power, right?
So this is your ability
to produce a lot of work
for say 30 seconds to maybe one minute,
kind of two minutes like that.
The next one down then
is more closely aligned
to what we'll call your VO2 max.
So this is your ability to
kind of do the same thing,
but more of a time domain
of say three to 12 minutes.
So this is going to be
a maximum heart rate,
but it's going to be well
past just max heart rate.
Then after that we have what I
call long duration endurance.
So this is your ability to sustain work.
The time domain doesn't matter in terms of
how fast you're going.
It's how long can you sustain work?
This is 30 plus minutes of no break.
Like that.
So as just an high level overview,
those are the different
things you can target.
And again, some of those crossover,
and some are actually
a little bit contrarian
to the other ones.
So pushing towards one
is maybe going to
sacrifice something else.
So as an overall start, that's
really what we're looking at.
Within all those though, they
do have similar concepts,
in terms of there is a handful
of things you have got to do
to make all of those things work.
And we could talk about as
many of those as you want,
but one of them is functionally
called progressive overload.
So whichever one you're
trying to improve at,
if you want to continue to improve,
you have to have some method of overload.
And as you well know, and
you've talked about a lot,
adaptation, physiologically,
happens as a byproduct of stress.
So you have to push a system.
So if you continue to do
say the exact same workout
over time, you better not
expect much improvement.
You can keep maintenance,
but you're not going to be
adding additional stress.
So in general, you have
to have some sort of
progressive overload,
and we can talk in detail
about what that means for each category.
But this could come from
adding more weights.
This could come from
adding more repetitions.
It could come from doing
it more often in the week.
It could come from adding
complexity to the movement.
So going from say a
partial range of motion
to a full range of motion,
or adding other variables.
So there's a lot of
different ways to progress.
But you have to have some
sort of movement forward.
So if you have this kind of routine
where you've built Monday, Wednesday,
and Saturday or something, and
you just do that infinitely,
you're not going to get very far.
So that's, I guess the
most high level overview
of all the things people can go after,
and then we can go from
whatever direction you want from there.
- Well I'd love to do the
deep dive on each one of these
- Yeah man.
- for several hours.
But, and I imagine that
over time, we probably will.
I'd love to chat about a couple of these
in a bit more depth.
So in terms of defining
what the progressive
overload variables are,
- Yeah.
- for these
different categories,
maybe we could hit the two
most common combinations
of these nine things.
The first one being
strength and hypertrophy.
- Yeah.
- And maybe we could
lump power in there.
Maybe not.
You're the exercise
physiologist.
- Yes and no, yeah.
- But strength and hypertrophy,
which at least bears some relationship.
And then maybe separately we could explore
sustained work endurance.
This 30 minutes or longer continuously,
'cause I think many people
train in that regime.
And probably something like
VO2 max anaerobic as well,
because I know that a number
of people now incorporate
so-called HIIT or high
intensity interval training,
I think with the hopes of
either shortening their workout.
- Yeah.
- And or,
gaining some additional
cardiovascular benefit.
So if we could start with
strength and hypertrophy,
I know many people want to be stronger.
They want to grow larger muscles,
or at least maintain what they have.
So what are the progressive
overload principles
that are most effective over time
for strength and hypertrophy?
- Yeah, okay.
So I'll actually go a little step back.
With every one of those
categories I talked about,
you have what we call
your modifiable variables.
So this is a very short list
of all the things you can modify,
the different variables
within your workout
that can be modified, that
will change the outcome.
A fancy way of saying, if
you do this differently,
then you're going to
get a different result.
So modifiable variables.
The very first one of
those is called choice.
So this is the exercise
choice that you select.
Now one of, I'm going
to go double back here,
so I'm kind of doing a
little bit of inception.
So follow me here as I'm going up a layer
to come down a couple layers.
I have these fundamental laws
of strength and conditioning
that, they're kind of like
a little bit of a joke.
But progressive overload's
one of those laws.
Another one of those laws
is your exercises themselves
do not determine adaptations.
So here's what I mean.
If you're like I want to get stronger,
you can't select an exercise.
That doesn't determine you getting strong.
If you don't do the exercise correctly,
and I'm not even referring
to the technique.
That of course matters.
But if you don't execute
it in the right fashion,
then you're not going
to get that adaptation.
So if you choose I want to get stronger,
I'm going to do a bench press.
Well, if you do the wrong set range,
the wrong repetition
range, the wrong speed,
you won't get strength, you
maybe get muscular endurance,
and very little strength adaptation.
So the exercise selection
itself is important,
but it does not determine
the outcome adaptation.
So the very first thing
that you need to think about
if you're like I want to
get stronger or add muscle,
is not the exercise choice, right?
It is the application of the exercise.
What are the sets, what are the reps,
what are the rest ranges
that you're using?
That's going to be your
primary determinant.
Now some exercises are certainly better
for some adaptations.
For example, a deadlift is
probably not a great exercise
to do for long duration endurance.
Like you could theoretically do
30 straight minutes of dead-lifting,
but it's probably not
our best choice, right?
It's probably a pretty good choice
for strength development, right,
'cause you're going to do a
low repetition, high set range.
You could theoretically
do bicep curls for power,
but probably not your best choice, right?
Single joint isolation
movement is not the best
for developing power.
If you've ever done a bicep curl
as fast as you possibly can,
like that's not going to go well.
So in theory, any exercise
can produce any adaptation,
given the execution is performed properly.
So now that we've understood
that a little bit,
the exercise itself does not
determine the adaptation.
Coming within each one
of these categories,
exercise choice is an important variable
because it does lend you to things like
what movement pattern you're in.
So in other words, if
you want to get stronger
and you're thinking, okay,
what exercise do I do,
you need to think a little bit about
what muscle groups do I want to use,
and that's going to be leading
you towards the exercise choice.
For example, I want to use my quads more.
Okay, fine.
Maybe you're going to
choose more of a front squat
type of variation, a goblet squat,
so the bar, the load is in front of you.
If you want to emphasize
maybe more of your hamstrings and glutes,
you're going to maybe put
a barbell on your back
or do a different one.
So the exercise choice is
important to the prescription
because it's going to determine
a lot of your success.
Okay, another kind of simpler
way to think about this.
If you're a beginner, or
moderate to intermediate,
or maybe you don't have a coach,
you probably want to hedge
towards an exercise selection
that is a little bit easier technically.
So you maybe don't want to
do a barbell back squat.
It's actually a pretty
complicated movement.
Maybe you want to do a
little bit more of, again,
a goblet squat, or even use
some machines, or a split squat,
something that's a little bit simpler
because you don't have a coach,
you're not a professional athlete.
The likelihood of success is higher,
and the risk is now gone lower.
So the very first variable
within all of these
is the exercise choice.
The second one is the
intensity, and that refers to,
in this context, not perceived effort,
like, wow, that was a
really intense workout.
It is quite literally either a percentage
of your one rep at max,
or a percentage of your
maximum heart rate or VO2 max.
So for the strength-based things,
you want to think about
what's the percentage
of the maximum weight
I could lift one time,
and that's what we're
going to call one rep max.
Or it's a percentage of
my heart rate, right?
So if I tell you to get on a bike
and I want you to do intervals,
and I want you to get 75%,
I'm typically referring to
75% of your max heart rate,
or VO2 max, or something like that.
If I tell you to do squats at 75%,
that means 75% of the
maximum amount of weight
you could lift one time, or close.
- In terms of determining one rep max,
I confess I've never actually
taken the one rep max
for any exercise.
But I have some internal sense
of what that might be or
what range it might be.
Is it necessary for people to assess
their one repetition maximum,
before going into these sorts of programs?
- No, not at all.
I think a more intuitive way
is to take a repetition range.
Well, you can do this a
couple of different ways.
So there are equations you can run,
and you can just Google these anywhere,
and these are called conversion charts.
And so it says okay, if I did
75 pounds on my bench press
and I did it eight times,
you can just run an estimate to say, okay,
you're probably going to be able to bench
about 95 pounds for one
rep max or something.
So that's a very easy conversion chart.
So just pick a load that
you feel comfortable with,
but it's kind of heavy
but not like crazy heavy,
and do as many repetitions as you can
with a really good technique.
And then look what that number would be.
So conversion charts.
- Probably safer than doing it
one repetition maximum.
- For the general public who has, again,
no coaching, it's safer.
For a professional athlete,
it's not any safer, but,
or not even a professional athlete,
but a trained person with a coach.
But for most people, yeah,
that's a good way to go about it.
You can also just kind of do it with feel,
in the sense that say you want to do
a set of five repetitions,
and you do the load,
and you think I could've
done one or two more.
And then you kind of have an idea of
what that number's going to be.
If you think, man, that
last one I had to kind of
really, really, really get after it,
then maybe just call
that that number, right?
So you don't have to get overly concerned.
In fact, when we start getting
into these number ranges,
you're going to see
that they're all ranges.
We're not going to give a specific 95%,
for one of these exact reasons.
It's not that precise for most of 'em.
In fact, some of 'em like hypertrophy
have enormous ranges that
you like almost can't miss.
So the intensity in that case
doesn't even matter for the most part,
because that's not the
primary determinant.
Some of these you're going to
see intensity as a determinant,
and some of these you're
going to see volume
is the true determinant.
So intensity though is that second one,
choice was the very first
one, manipulable variable.
Intensity was the second one.
The third one is what we call volume.
And so this is just how many reps
and how many sets are you doing, right?
So if you're going to do three sets of 10,
that volume would be 30, right?
Five sets of five, that volume is 25.
It's just a simple equation.
How much work are you totally doing?
The next one past that
is called rest intervals.
So this is the amount
of time you're taking
in between typically a set.
Then from there, you have progression,
which is what we started to talk about,
this progressive overload,
are you increasing by weight, or reps,
or rest intervals, or
complexity, or whatever.
So all of those things can be changed
as a method of progression.
And so maybe you want to go progressing
from a single joint exercise,
like a leg extension on a machine,
and you want to progress
by moving to a whole body
movement like a squat.
That in of itself,
you don't have to change the
load, or the reps, or the rest.
That is a representation
of progressive overload.
And it's probably a pretty
good place to start,
because number one,
especially for beginners,
you want to make sure that the
movement pattern is correct.
Don't worry about intensity.
Don't worry about rep ranges
or any of these things.
You need to learn to move correctly,
and you need to give your
body some time to develop
some tissue tolerance.
So that you're not getting overtly sore.
In general, soreness is a terrible proxy
for exercise quality.
It's a really bad way to estimate
whether it was a good or a bad workout,
especially for people in that
beginner to middle to moderate.
In fact, even for our
professional athletes,
we do not use soreness as
a metric of a good workout.
It's a really bad idea
for a bunch of reasons.
On the same token,
because stress is required for adaptation,
you don't want to leave
the gym and feel like
I didn't really do much.
There has to be there.
So if you think about soreness
on a scale of one to 10,
you probably want to
spend most of your time
in like the three.
- You mean post-exercise?
- Yeah.
- In between workouts.
- [Andy] Totally.
- And I know we'll talk about
recovery extensively later,
but if one body part or
set of body parts is sore,
is that an indication that one
should stay out of training?
I would imagine the answer is no.
- Right.
- In most cases.
And secondarily to that, if
a particular muscle is sore,
does that mean that muscle is
not ready to be trained again?
- Yeah, the answer to both
those is the same, which is no.
Right?
You can certainly train a sore muscle.
You need to, I guess,
have a little bit of feel on that, right?
So if you're sore of like, okay,
and you're moving around a
little bit and you're like, man,
this is a little bit sore, you can train.
If you're like, I can't sit
on the couch without crying
because my glutes are so sore,
like we probably don't
need to train again, right.
- Does whimpering count as crying?
- Yeah, in that particular case I'd say
you've actually gone to
a place of detriment,
because now you're going to
have to skip a training session.
And now you're behind,
so your actual total
volume say across the month
is actually going to be lower
because you went way too
hard in those workouts,
had to take too many days off in between.
You're going to see that you're
going to cover less distance
over the course of a month,