RPLA Model Exam Dec 2022 Questions
RPLA Model Exam Dec 2022 Questions
A subset W of a vector space V is a subspace if it satisfies three conditions: (i) The zero vector of V is in W, (ii) W is closed under vector addition, meaning that for any vectors u and v in W, the vector u + v is also in W, and (iii) W is closed under scalar multiplication, which means that for any vector u in W and any scalar c, the scalar product cu is also in W. To verify these conditions practically, one must check each condition on the subset W provided in a problem. For instance, if W = {(a1, a2, a3) ∈ R^3 | a1 + 2a2 − 3a3 = 0}, we verify W contains the zero vector (0, 0, 0), that for any vectors satisfying the equation within W their sum also satisfies it, and that any scalar multiple of vectors in W also satisfies it, thus confirming W is a subspace .
The application of multiple integration methods in solving real-world problems, such as in physics for calculating mass, center of mass, or electric fields over a volume, allows capturing and processing complex multivariable systems. Tools like double and triple integrals extend calculus to areas and volumes, enabling the evaluation of multidimensional entities in engineering, economics, and environmental science. These integrations enhance analytical capabilities by providing a robust framework for modeling and solving equations that describe continuous change across dimensions, thus transitioning theoretical mathematics into practical applications .
The memoryless property of the exponential distribution states that the probability of an event occurring in the next time period is independent of how much time has already elapsed. To prove this, consider a random variable X that follows an exponential distribution with rate parameter λ. The memoryless property can be expressed as P(X > s + t | X > s) = P(X > t). This is derived by using the cumulative distribution function of the exponential distribution and properties of conditional probability: P(X > s + t | X > s) = P(X > s + t and X > s) / P(X > s) = P(X > s + t) / P(X > s) = (e^{-λ(s+t)})/(e^{-λs}) = e^{-λt} = P(X > t). This means that the 'waiting time' for an event remains the same at any point, which is significant for processes that can be described as having a constant failure rate like radioactive decay or certain queuing models .
To address a Poisson process related to machine failures, where the mean failure rate is given, one must calculate the probabilities of multiple independent events over defined intervals. For example, with a failure rate of 1 per week, to find the probability that two weeks have passed since the last failure involves using the formula P(X = n) = (e^{-λt} * (λt)^{n})/n!, wherein λ = 1 and t = 2 weeks, n = 0. Calculating this gives P(X = 0) or the probability of zero failures over two weeks. Additionally, with 5 spare parts available for 10 weeks, calculate cumulative probabilities for X ≤ 5, reflecting the machine not exceeding available spares. This approach ensures preparedness for potential failure spikes without immediate spare replenishment .
To calculate the probability distribution of (X + Y), where X and Y are jointly distributed, one must integrate their joint probability density function over the domain. Given p(x, y) = K(2x + 3y), with support constraints x=0,1,2; y=1,2,3, integrate over each pair (x, y). Determine K by ensuring the integral over the entire space is 1, applying ∑k∑_y p(x, y) = 1. This results in a distribution for each total value of z = X + Y, computed individually. Understanding this combined variable reveals the instances and likelihoods of possible values that (X + Y) can take, showing interactions such as dependence or binarity among X and Y .
Geometric distribution is applied in scenarios where we model the number of trials needed to achieve the first success in repeated Bernoulli trials, such as flipping a coin until heads appears. The memoryless property of the geometric distribution, P(X > n + k | X > n) = P(X > k), signifies that the future number of trials needed is independent of past failures. This is distinct from the exponential distribution's memoryless property where the probability of service time remaining is independent of how long the service has taken so far. Both imply 'no memory' but apply to discrete and continuous scenarios, respectively .
The limiting case of the binomial distribution as the number of trials n approaches infinity, while the probability p of success in each trial approaches zero such that the product np = λ remains constant, results in the Poisson distribution. This is significant because it allows the binomial distribution to model rare events occurring over many trials, by approximating them with a simpler Poisson distribution, characterized by rate λ. It helps in reducing complexity when calculating probabilities for events like defects in large batches or occurrence of a rare disease over a population, which might be cumbersome using binomial calculations directly .
Random variables X and Y are independent if their joint density function f(x, y) can be expressed as a product of their marginal densities, i.e., f(x, y) = fX(x)fY(y). Given f(x, y) = 4xye^(-(x^2+y^2)), to check independence, derive marginal densities fX(x) = ∫f(x, y) dy and fY(y) = ∫f(x, y) dx. If fX(x)fY(y) equals f(x, y) for all x,y in the domain, X and Y are independent. For the given density, such factorization is impossible, showing X and Y are statistically dependent .
To find an orthonormal basis for a vector space, the Gram-Schmidt process provides a systematic method to convert a set of linearly independent vectors into an orthonormal set. Given a basis {v1, v2, v3}, the steps are: 1) Set u1 = v1/||v1|| to normalize the first vector. 2) Adjust the orthogonality for the second vector: subtract the projection of v2 onto u1 from v2 to derive a new vector orthogonal to u1. Normalize this vector for u2: u2 = (v2-proj_u1(v2))/||v2-proj_u1(v2)||. 3) Repeat for v3 with respect to both u1 and u2: subtract its projections onto u1 and u2. Normalize for u3. These steps ensure each ui is orthogonal to the others and has unit length, forming the orthonormal basis {u1, u2, u3} .
Regression lines describe the relationship between two correlated variables, helping in estimating one variable based on the other. Given the regression lines of X on Y and Y on X as 3x + 2y = 26 and 6x + y = 31, respectively, they provide the formulas for the best fit line. To calculate the mean values of X and Y, solve these equations simultaneously. Substituting the equations: Multiply the second equation by 2 to get matching coefficients for y, resulting in 12x + 2y = 62. Subtract the first equation from this to eliminate y and solve for x, and vice versa. Solving these yields the means: x = 4 and y = 10 .