You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first (and better) way is to differentiate both sides of the above equation using the Fundamental Theorem of Calculus (Part I) on the integral. This will give an equation that can be solved for f(x). The value of the number a can be determined by no
43
-
44
-
rmal integration (i.e. the Evaluation Theorem) of the original equation.
45
-
$PAR
46
-
The second way (and a bit harder) is to simply guess the form of f(x) and do normal integration to see if you are right. The value of the number a is determined as in the preceding paragraph above.
47
-
$PAR
48
-
EOT
49
-
50
-
TEXT(EV2(<<EOT));
51
39
\( f(x) = \) \{ans_rule( 20)\}
52
40
$PAR
53
41
\( a = \) \{ans_rule( 20)\}
54
-
EOT
42
+
END_TEXT
55
43
56
44
$d = $c*$n;
57
45
$e = $m+$n-1;
46
+
$f = $n-1;
47
+
48
+
$ans1=Compute("$d*x^$e");
49
+
$ans2=Compute(($b/$c)**(1/$n));
58
50
59
-
$ans1="$d*x**$e" ;
60
-
$ans2=($c/$b)**(-1/$n);
51
+
ANS($ans1->cmp());
52
+
ANS($ans2->cmp());
61
53
62
-
ANS(fun_cmp($ans1));
63
-
ANS(num_cmp($ans2));
64
54
65
-
&SOLUTION(EV3(<<'EOT'));
55
+
BEGIN_HINT
56
+
There are two ways to solve this problem.
57
+
$PAR
58
+
The first (and better) way is to differentiate both sides of the above equation using the Fundamental Theorem of Calculus (Part I) on the integral. This will give an equation that can be solved for f(x). The value of the number a can be determined by integrating the original equation (i.e. the Evaluation Theorem).
59
+
$PAR
60
+
The second way (and a bit harder) is to simply guess the form of f(x) and integrate to see if you are right. The value of the number a is determined as in the preceding paragraph above.
61
+
$PAR
62
+
END_HINT
63
+
64
+
BEGIN_SOLUTION
66
65
$SOL $BR
67
66
As the hint suggests, the best way to solve this problem is to first determine the form
68
67
of the function \( f(x) \) by using the first portion of the Fundamental Theorem of
@@ -73,28 +72,26 @@ below:
73
72
\]
74
73
Next, we differentiate both sides to get:
75
74
\[
76
-
\frac{f(x)}{x^{$m}} = \{$c*$n\} x^{ \{$n-1\} }
75
+
\frac{f(x)}{x^{$m}} = $d x^{ $f }
77
76
\]
78
77
Therefore, the function desired is:
79
78
\[
80
-
f(x) = \{ $c*$n \} x^{ \{$n-1+$m\} }
79
+
f(x) = $d x^{ $e }
81
80
\]
82
81
Now, to determine the value of \( a \), we need to integrate the original expression
83
82
using our new information about \( f(t) \). That is, we now have:
0 commit comments