2) This one is tricky but here's my attempt...
I started by making this list:
b( | 1 | ) | _ = _ | 1 |
b( | 2 | ) | = | 1 |
b( | 3 | ) | = | 2 |
b( | 4 | ) | = | 2 |
b( | 5 | ) | = | 2 |
b( | 6 | ) | = | 2 |
b( | 7 | ) | = | 3 |
b( | 8 | ) | = | 3 |
b( | 9 | ) | = | 3 |
b( | 10 | ) | = | 3 |
b( | 11 | ) | = | 3 |
b( | 12 | ) | = | 3 |
b( | 13 | ) | = | 4 |
b( | 14 | ) | = | 4 |
b( | 15 | ) | = | 4 |
b( | -16- | ) | = | 4 |
. . . | ||||
b( | 1980 | ) | = | 44 |
b( | 1981 | ) | = | 45 |
b( | 1982 | ) | = | 45 |
b( | 1983 | ) | = | 45 |
b( | 1984 | ) | = | 45 |
b( | 1985 | ) | = | 45 |
b( | 1986 | ) | = | 45 |
b( | 1987 | ) | = | 45 |
b( | 1988 | ) | = | 45 |
b( | 1989 | ) | = | 45 |
b( | 1990 | ) | = | 45 |
b( | 1991 | ) | = | 45 |
b( | 1992 | ) | = | 45 |
b( | 1993 | ) | = | 45 |
b( | 1994 | ) | = | 45 |
b( | 1995 | ) | = | 45 |
b( | 1996 | ) | = | 45 |
b( | 1997 | ) | = | 45 |
b( | 1998 | ) | = | 45 |
b( | 1999 | ) | = | 45 |
b( | 2000 | ) | = | 45 |
b( | 2001 | ) | = | 45 |
b( | 2002 | ) | = | 45 |
b( | 2003 | ) | = | 45 |
b( | 2004 | ) | = | 45 |
b( | 2005 | ) | = | 45 |
b( | 2006 | ) | = | 45 |
b( | 2007 | ) | = | 45 |
By now we can notice something...
b( | 7 | ) = 3 because | 7 | is closer to 9 than 4, and |
b( | 12 | ) = 3 because | 12 | is closer to 9 than 16 |
Between 4 and 9 , there are 4 numbers and 4/2 = 2
Between 9 and 16 there are 6 numbers and 6/2 = 3
So the number of 3's = 1 + 2 + 3 = 6
We can backtrack the previous steps to get...
the number of 3's = 1+42+62 = 1+9−4−12+16−9−12 = 1+32−(3−1)2−12+(3+1)2−32−12
So in general,
the number of n's = 1+n2−(n−1)2−12+(n+1)2−n2−12 which simplifies to...
the number of n's = 2n
This agrees with the list from earlier!!!
Except the number of 45's is only 27 because the list ends at b(2007)
2007∑p=1b(p) = b(1)+b(2)+b(3)+b(4)+b(5)+b(6)+b(7)+⋯+b(2006)+b(2007) 2007∑p=1b(p) = 1+1+2+2+2+2+3+⋯+45+45 2007∑p=1b(p) = 2(1)+4(2)+6(3)+⋯+88(44)+27(45) 2007∑p=1b(p) = 44∑k=1(2k)(k)+ 27(45) 2007∑p=1b(p) = 44∑k=1(2k)(k)+ 27(45) 2007∑p=1b(p) = 244∑k=1k2+ 27(45) 2007∑p=1b(p) = 2(44(44+1)(2(44)+1)6)+ 27(45) 2007∑p=1b(p) = 58740+ 1215 2007∑p=1b(p) = 59955
P.S. There definitely might be a better way to do it...
1) ( Assuming you meant compute f(5,5) )
f(5, 5) = f(4 + 1, 5) = 5[ f(4, 5) + f(4, 5 - 1) ] = 5[ 0 + f(4, 4) ] = 5[ f(4, 4) ] | |||
f(4, 4) = f(3 + 1, 4) = 4[ f(3, 4) + f(3, 4 - 1) ] = 4[ 0 + f(3, 3) ] = 4[ f(3, 3) ] |
| ||
f(3, 3) = f(2 + 1, 3) = 3[ f(2, 3) + f(2, 3 - 1) ] = 3[ 0 + f(2, 2) ] = 3[ f(2, 2) ] | |||
f(2, 2) = f(1 + 1, 2) = 2[ f(1, 2) + f(1, 2 - 1) ] = 2[ 0 + f(1, 1) ] = 2[ f(1, 1) ] |
| ||
f(1, 1) = 1 |
f(2, 2) = 2[ f(1, 1) ] = 2[ | 1 | ] = 2 |
|
f(3, 3) = 3[ f(2, 2) ] = 3[ | 2 | ] = 6 | |
f(4, 4) = 4[ f(3, 3) ] = 4[ | 6 | ] = 24 |
|
f(5, 5) = 5[ f(4, 4) ] = 5[ | -24- | ] = 120 |
a + ab2 = 40b
a - ab2 = -32b
The purple values are equal and the blue values are equal. purple + blue = purple + blue
(a + ab2) + (a - ab2) = 40b + -32b
(a + ab2) + (a - ab2) = 40b + -32b
2a = 8b
14a = b
Now we can substitute this value for b into one of the original equations.
a + ab2 = 40b
Substitute 14a in for b
a + a(14a)2 = 40(14a)
Simplify both sides of the equation.
a + 116a3 = 10a
Multiply through by 16
16a + a3 = 160a
Subtract 16a and subtract a3 from both sides
0 = 144a - a3
Factor a out of both terms on the right side
0 = a( 144 - a2 )
Factor 144 - a2 as a difference of squares
0 = a( 12 - a )( 12 + a )
Set each factor equal to 0 and solve for a
0 = a | ___ or ___ | 12 - a = 0 | ___ or ___ | 12 + a = 0 |
|
a = 0 | a = 12 | a = -12 |
Here is another answer for this question: https://web2.0calc.com/questions/help-plz_7742
(a) https://web2.0calc.com/questions/math-halp-plz#r1
(b)
Let AB = c (because it is the side across from angle C)
and AC = b (because it is the side across from angle B)
and BC = a (because it is the side across from angle A)
Draw a height from M which meets side AC at point D
m∠BAC = m∠MAD because they are the same angle
m∠ACB = m∠ADM because they are both right angles
So by AA similarity, △ABC ~ △AMD
And we know AM = c / 2 because M is the midpoint of AB
So the scale factor from △ABC to △AMD is 1/2 And so...
AM = c / 2
AD = b / 2
DM = a / 2
Then by SAS congruence we can determine that △ADM ≅ △CDM and so...
CM = AM
CM = c / 2
CM = (1/2)(AB)