add commit
This commit is contained in:
parent
f09847ed69
commit
001b98318d
@ -1,3 +0,0 @@
|
||||
# Math Programms
|
||||
|
||||
nothing yet
|
@ -1,5 +1,5 @@
|
||||
### Math ordinary tasks
|
||||
***
|
||||
Here you can find math tasks, which i did for myself
|
||||
Here you can find math tasks, which i did for myself
|
||||
|
||||
- [overpayment](overpayment.py) - calculation of loan overpayment
|
||||
- [Overpayment](overpayment.py) - calculation of loan overpayment
|
||||
|
13
practica/math/statistic/Arithmetic_mean.py
Normal file
13
practica/math/statistic/Arithmetic_mean.py
Normal file
@ -0,0 +1,13 @@
|
||||
# формула среднего значения
|
||||
def find_average(x):
|
||||
return sum(x) / len(x)
|
||||
|
||||
# формула среднего значения для заданного набора значений
|
||||
a = [int(item) for item in input().split()]
|
||||
def find_average(a):
|
||||
return sum(a) / len(a)
|
||||
print (find_average(a))
|
||||
|
||||
|
||||
|
||||
|
@ -29,13 +29,13 @@ if b>a:
|
||||
print (b)
|
||||
|
||||
# короткий вариант
|
||||
# a=int(input())
|
||||
# b=int(input())
|
||||
# n=a
|
||||
# if a==b: # если оба значения (a и b) равны, выводим сразу это значение, и программа завершается.
|
||||
# print(n)
|
||||
# # иначе, при помощи цикла, прибавляем к одному из значений(a или b) его же значение,
|
||||
# else: # а+а+... или b+b+...до тех пор, пока сумма не будет кратной введенным значениям a и b
|
||||
# while n%a!=0 or n%b!=0: # ТАКОЙ способ позволяет не прерывать цикл. Ниже пояснение.
|
||||
# n=n+a
|
||||
# print(n)
|
||||
a=int(input())
|
||||
b=int(input())
|
||||
n=a
|
||||
if a==b: # если оба значения (a и b) равны, выводим сразу это значение, и программа завершается.
|
||||
print(n)
|
||||
# иначе, при помощи цикла, прибавляем к одному из значений(a или b) его же значение,
|
||||
else: # а+а+... или b+b+...до тех пор, пока сумма не будет кратной введенным значениям a и b
|
||||
while n%a!=0 or n%b!=0: # ТАКОЙ способ позволяет не прерывать цикл. Ниже пояснение.
|
||||
n=n+a
|
||||
print(n)
|
@ -1,3 +0,0 @@
|
||||
# возвращаем квадрат из числа
|
||||
def get_sqrt(x):
|
||||
return x ** 0.5
|
3
practica/math/statistic/Number_square_root.py
Normal file
3
practica/math/statistic/Number_square_root.py
Normal file
@ -0,0 +1,3 @@
|
||||
# корень из числа
|
||||
def get_sqrt(x):
|
||||
return x ** 0.
|
@ -1,11 +1,15 @@
|
||||
### Math|stat tasks
|
||||
***
|
||||
Here you can find statistic tasks, which can be usefull in econometric calculations
|
||||
# Math|stat tasks
|
||||
|
||||
# Variance
|
||||
Here you can find statistic tasks, which can be usefull in econometric calculations
|
||||
|
||||
- [average value](average_value.py) -
|
||||
- [Greatest common divisor](Greatest_common_divisor.py) -
|
||||
## Variance
|
||||
|
||||
- [Arithmetic mean](Arithmetic_mean.py) - the arithmetic mean of a given set of values formula
|
||||
- [Greatest common divisor](Greatest_common_divisor.py) - calculate the GSD
|
||||
- [Least common multiple](Least_common_multiple.py) - calculate the LCM
|
||||
- [Median](median.py) - the median formula
|
||||
- [Multiplication tables](multiplication_tables.py) - multiplication tables in the form of a table of 2 horizontal and 2 vertical values
|
||||
- [Number square root](Number_square_root.py) - the square root of the number formula
|
||||
- [Range](range.py) - the formula of mathematical range
|
||||
|
||||
|
||||
# Statistic tasks
|
||||
|
6
practica/math/statistic/Statistic tasks/README.md
Normal file
6
practica/math/statistic/Statistic tasks/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
## Statistic tasks
|
||||
- [Mean of numbers on a segment](mean_of_nm_on_segment.py) -
|
||||
- [Standard deviation](Standard_deviation.py) - calculate the standard deviation of list
|
||||
- [Sum](sum.py) -
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
# среднее значение
|
||||
def find_average(x):
|
||||
return sum(x) / len(x)
|
Loading…
Reference in New Issue
Block a user