We are given two parallel straight lines:1. r=k^+s(i^+j^), where s∈R2. r=j^+t(i^+j^), where t∈RWe need to find the shortest distance between these two parallel lines. To solve this, we use the formula for the shortest distance d between two parallel lines given by:d=∣v1×v2∣∣r1−r2⋅(v1×v2)∣Here:- r1=k^ (from the first line)- r2=j^ (from the second line)- v1=i^+j^ (direction vector of the first line)- v2=i^+j^ (direction vector of the second line)Since the lines are parallel, v1=v2, so the cross product v1×v2 will give a zero vector. We now use the formula for the shortest distance between two parallel lines:d=∣i^+j^∣∣(k^−j^)⋅(i^+j^)∣We calculate k^−j^=(0,−1,1) and i^+j^=(1,1,0), and their dot product: (k^−j^)⋅(i^+j^)=(0,−1,1)⋅(1,1,0)=0×1+(−1)×1+1×0=−1Now, we calculate the magnitude of i^+j^: ∣i^+j^∣=12+12=2Thus, the shortest distance is: d=2∣−1∣=21⇒d=23Thus, the correct answer is option (C), 23. Quick Tip: The shortest distance between two parallel lines can be calculated by finding the difference vector of a point on one line and a point on the other line, taking the dot product with the direction vector, and dividing by the magnitude of the direction vector.