The distance between two points knowing theirs coordinates:
AB =√[(x₂-x₁)² +(y₂-y₁)²]; ===>A(5,-4) & B(-3,-1) Given
A(x₁,y₁) & B(x₂,y₂)
AB =√[(-3-5))²+(-1-(-4)²] =√(73) = 8.381 ≈ 5.44 units
Answer:
The team can be formed in 756 different ways
Step-by-step explanation:
This is a combination problem since we are to select a set of people from a group. Combination has to do with selection.
for example, if r number of object is to be selected from a pool of n objects, this can be done in nCr number of ways.

Now If A company has 7 male and 9 female employees, and needs to nominate 2 men and 2 women for the company bowling team, then this can be done in the following way;


7C2 * 9C2 = 21*36
= 756
The team can be formed in 756 different ways
Inverse function: you need to exchange the position of x and y, in other words,
x = (5-2y^2)/(3y+10) , then, if you need a representation of y with respect to x, then you need to perform some math.
Multiplying fractions by whole numbers:
1. You have to convert the whole number into an improper fraction.
2. You then multiply the fractions straight across.
Ex: 2/3 × 6 =2/3 × 6/1 = 2×6/3×1= 12/3= 4
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: