This article discusses the method of estimating the range of accepted values and the relationship of this method with the tasks containing the module.
When solving some problems, it is necessary to consider the range within which the desired value may be. ')
Consider the method of estimation when solving inequalities.
Suppose that the price for a single item can vary from 5 to 10 RUB. To give a top estimate means to determine the maximum value that the desired value can take. For two units of goods, the price for which does not exceed 10, the upper rating will be 10 + 10 = 20 .
Consider the task from the taskbook of the profile orientation of M.I. Bashmakova 37. Known estimates for variables and
Give top estimates for the following expressions: one. 2
The instruction to the decision of problems 5 and 6
To evaluate fractional expressions, you must use the following property of numerical inequalities:
If a and both numbers are positive, then
five. 6
eight. 9.
Answers
one. five. 9.
In general, the analysis of infinitely small quantities uses an evaluation criterion. The concept of a module as a neighborhood lies in the definition of the limit itself.
Consider an example from the Course of Differential and Integral Calculus 363 (6)
It is easy to establish the divergence of the series
In fact, since its members decrease, the nth partial sum
and grows to infinity along with .
In order to prove that really more , you need to evaluate the bottom of this expression. We get a system of inequalities
(define series_sum_1 ( lambda (n) (if (= n 0) 0 (+ (/1.0 (* (+ n 2.0) (+ n 3.0))) (series_sum_1(- n 1.0))) ) ) ) (series_sum_11000000)
We get 0.33333233333632745 Partial sums of a series are bounded above.
A positive row always has an amount; this sum will be finite (and, therefore, the row will converge) if the partial sums of the row are bounded above, and infinite (and the row divergent) otherwise.
Calculate the sum of the harmonic series with increasing n
We get: 0.5833333333333334 0.6345238095238095 0.6628718503718504 We write a program that calculates the sum of the harmonic series from before where at
#lang racket (define (Hn n ) (define half_arg (/ n 2.0)) (define (series_sum n) (if (= n half_arg ) 0 (+ (/1.0 n) (series_sum(- n 1)) ) ) ) (series_sum n) ) (Hn4) (Hn8) (Hn16) (Hn32)
We get: 0.5833333333333333 0.6345238095238095 0.6628718503718504 0.6777662022075267
You can check in the online ide link For range we get 0.693147 ... Check out the Wolfram Cloud here .
This recursive algorithm causes a fast stack overflow. This article has an example of factorial calculation using an iterative algorithm. We modify this iterative algorithm so that it calculates the partial sum Hn within certain bounds; let's call these boundaries a and b
We will substitute (+ 1 (power_of_two k)) as the lower border, and use the function (* 2 (power_of_two k)) or its equivalent function (power_of_two (+ 1 k)) as the top border Rewrite the function Hn
(define (Hn k) (define a (+1 (power_of_two k)) ) (define b (*2 (power_of_two k)) ) (define (iteration product counter) (if (> counter b) product (iteration (+ product (/1.0 counter)) (+ counter 1)))) (iteration0 a ))
Now you can calculate Hn for large values .
We write in C language a program that measures the time needed to calculate Hn . We will use the clock () function from the standard library <time.h> Article about measurement of processor time is on Habré here .
Let's return to the modules. In integral calculus, the module is used in the formula
On Habré there was an article The most natural logarithm in which this integral is considered and based on its calculation of the number .
The presence of the module in the formula further substantiated in the "Course of differential and integral calculus"
If a… then it’s easy to make sure that
Physical integral application
This integral is used to calculate the potential difference between the plates of a cylindrical capacitor.
"Electricity and Magnetism":
The potential difference between the plates we find by integrating:
( and - the radii of the inner and outer plates).
The module sign under the sign of the natural logarithm is not used here. , because and strictly positive and this form of writing is redundant.
"Modular" drawing
With the help of modules you can draw various shapes.
If the program geogebra write the formula will get
You can draw more complex shapes. For example, let's draw a “butterfly” in the WolframAlpha cloud.
Plot [Sum [abs (x) / (n-abs (x)) + abs (x + n) / (n) + abs (xn) / (n), {n, 1.20}], {x, -60,60}] In this expression lies in the range of before , lies in the range of before . Link to the picture.
Books:
"The task book of the profile orientation" M.I. Bashmakov The course of general physics: in 3 tons. T. 2. “Electricity and magnetism” I.V. Saveliev