Differential Equations Quiz: Initial Conditions Separable Equations
17 questions · exam conditions
0:00
Initial Conditions Separable EquationsQuestion 1 of 17

For the initial value problem xdydx=2yx \frac{dy}{dx} = 2y with y(1)=3y(-1) = 3, what is the value of y(2)y(2)?

12-12
1212
66
6-6
← Back to quizzes

Differential Equations Quiz

Differential Equations Quiz: Initial Conditions Separable Equations

Practice Initial Conditions Separable Equations in Differential Equations with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.

What this quiz covers

This quiz focuses on Initial Conditions Separable Equations, giving you a quick way to practice the rules, question types, and explanations that matter most for Differential Equations.

How to use this quiz

Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.

All questions

Question 1

For the initial value problem xdydx=2yx \frac{dy}{dx} = 2y with y(1)=3y(-1) = 3, what is the value of y(2)y(2)?

  1. 12-12
  2. 1212 (correct answer)
  3. 66
  4. 6-6
Explanation: When you encounter a differential equation like xdydx=2yx \frac{dy}{dx} = 2y, you're dealing with a separable equation that can be solved by isolating variables on opposite sides. First, separate the variables by dividing both sides by yy and multiplying by dxdx: dyy=2dxx\frac{dy}{y} = \frac{2dx}{x} Now integrate both sides: dyy=2dxx\int \frac{dy}{y} = \int \frac{2dx}{x} This gives you: lny=2lnx+C\ln|y| = 2\ln|x| + C Using logarithm properties, 2lnx=lnx22\ln|x| = \ln|x^2|, so: lny=lnx2+C\ln|y| = \ln|x^2| + C Exponentiating both sides: y=eCx2=Kx2|y| = e^C \cdot |x^2| = K|x|^2 Since we can absorb the absolute value signs into the constant, the general solution is: y=Kx2y = Kx^2 Apply the initial condition y(1)=3y(-1) = 3: 3=K(1)2=K(1)=K3 = K(-1)^2 = K(1) = K So K=3K = 3, making our particular solution y=3x2y = 3x^2. Therefore: y(2)=3(2)2=3(4)=12y(2) = 3(2)^2 = 3(4) = 12 Choice A (12-12) likely comes from incorrectly handling the negative initial condition point. Choice C (66) results from forgetting to square the xx-value when substituting x=2x = 2. Choice D (6-6) combines both errors—mishandling the sign and forgetting to square. Study tip: For separable differential equations, always check your general solution against the initial condition to find the particular constant, and be extra careful with signs when dealing with negative initial values.

Question 2

A separable differential equation dydx=g(x)h(y)\frac{dy}{dx} = g(x)h(y) has the particular solution F(y)=G(x)+3F(y) = G(x) + 3 after applying the initial condition y(1)=2y(1) = 2. If the general solution before applying initial conditions was F(y)=G(x)+CF(y) = G(x) + C, which of the following must be true?

  1. F(2)=G(1)F(2) = G(1), so the constant C=0C = 0 in this case
  2. F(2)=G(1)+CF(2) = G(1) + C and C=3C = 3, so F(2)=G(1)+3F(2) = G(1) + 3
  3. F(2)G(1)=3F(2) - G(1) = 3, indicating the integration constant equals 33 (correct answer)
  4. F(2)+G(1)=3F(2) + G(1) = 3, which determines the relationship between functions
Explanation: For a separable equation dydx=g(x)h(y)\frac{dy}{dx} = g(x)h(y), we separate to get dyh(y)=g(x)dx\frac{dy}{h(y)} = g(x)dx. Integrating: dyh(y)=g(x)dx\int \frac{dy}{h(y)} = \int g(x)dx gives F(y)=G(x)+CF(y) = G(x) + C. Applying initial condition y(1)=2y(1) = 2: F(2)=G(1)+CF(2) = G(1) + C. Since the particular solution is F(y)=G(x)+3F(y) = G(x) + 3, we have C=3C = 3. Therefore F(2)=G(1)+3F(2) = G(1) + 3, which can be rewritten as F(2)G(1)=3F(2) - G(1) = 3. Choice A incorrectly sets C = 0. Choice B correctly identifies the relationship but doesn't simplify to the form requested. Choice D incorrectly uses addition instead of subtraction.

Question 3

Water is draining from a tank. The rate of change of the volume VV of water in the tank with respect to time tt is proportional to the square root of the volume, so dVdt=kV\frac{dV}{dt} = -k\sqrt{V} for some constant k>0k>0. At time t=0t=0, the volume is 100100 liters. At time t=1t=1, the volume is 6464 liters. At what time tt is the tank empty?

  1. 4.54.5
  2. 25/925/9
  3. 55 (correct answer)
  4. 44
Explanation: This is a separable differential equation problem where the rate of volume change depends on the current volume. When you see dVdt=kV\frac{dV}{dt} = -k\sqrt{V}, you need to separate variables and solve for the constant using given conditions. Start by separating variables: dVV=kdt\frac{dV}{\sqrt{V}} = -k \, dt. Rewriting the left side as V1/2dVV^{-1/2} dV and integrating both sides gives V1/2dV=kdt\int V^{-1/2} dV = \int -k \, dt, which yields 2V=kt+C2\sqrt{V} = -kt + C. Using the initial condition V(0)=100V(0) = 100: 2100=C2\sqrt{100} = C, so C=20C = 20. This gives us 2V=kt+202\sqrt{V} = -kt + 20, or V=10kt2\sqrt{V} = 10 - \frac{kt}{2}. Now use the second condition V(1)=64V(1) = 64: 64=10k2\sqrt{64} = 10 - \frac{k}{2}, so 8=10k28 = 10 - \frac{k}{2}, giving us k=4k = 4. The complete solution is V=102t\sqrt{V} = 10 - 2t. The tank empties when V=0V = 0, so 0=102t0 = 10 - 2t, which means t=5t = 5. Choice A (4.5) likely comes from arithmetic errors in solving for kk or the final equation. Choice B (25/9) might result from incorrectly setting up the separation of variables. Choice D (4) probably comes from confusing the value of kk with the final answer. When solving separable differential equations, always check your constant using both given conditions, and remember that "empty" means setting the quantity equal to zero.

Question 4

The solution to the initial value problem sec2(x)dy+csc(y)dx=0\sec^2(x) dy + \csc(y) dx = 0, with y(π/4)=π/6y(\pi/4) = \pi/6, can be written implicitly as cos(y)=x2+14sin(2x)+K\cos(y) = \frac{x}{2} + \frac{1}{4}\sin(2x) + K. What is the value of the constant KK?

  1. 43π28\frac{4\sqrt{3} - \pi - 2}{8} (correct answer)
  2. π+2438\frac{\pi + 2 - 4\sqrt{3}}{8}
  3. 2π8\frac{2 - \pi}{8}
  4. 43π8\frac{4\sqrt{3} - \pi}{8}
Explanation: First, separate the variables: dycsc(y)=dxsec2(x)\frac{dy}{\csc(y)} = -\frac{dx}{\sec^2(x)}, which is sin(y)dy=cos2(x)dx\sin(y) dy = -\cos^2(x) dx. Integrate both sides: sin(y)dy=cos2(x)dx\int \sin(y) dy = -\int \cos^2(x) dx. This gives cos(y)=1+cos(2x)2dx=(x2+14sin(2x))+C1-\cos(y) = -\int \frac{1+\cos(2x)}{2} dx = -(\frac{x}{2} + \frac{1}{4}\sin(2x)) + C_1. So, cos(y)=x214sin(2x)+C1-\cos(y) = -\frac{x}{2} - \frac{1}{4}\sin(2x) + C_1. Apply the initial condition y(π/4)=π/6y(\pi/4) = \pi/6: cos(π/6)=π/4214sin(π/2)+C1-\cos(\pi/6) = -\frac{\pi/4}{2} - \frac{1}{4}\sin(\pi/2) + C_1. This becomes 32=π814+C1-\frac{\sqrt{3}}{2} = -\frac{\pi}{8} - \frac{1}{4} + C_1, so C1=π8+1432=π+2438C_1 = \frac{\pi}{8} + \frac{1}{4} - \frac{\sqrt{3}}{2} = \frac{\pi + 2 - 4\sqrt{3}}{8}. The implicit solution is cos(y)=x214sin(2x)+π+2438-\cos(y) = -\frac{x}{2} - \frac{1}{4}\sin(2x) + \frac{\pi + 2 - 4\sqrt{3}}{8}. Multiplying by -1 gives cos(y)=x2+14sin(2x)π+2438=x2+14sin(2x)+43π28\cos(y) = \frac{x}{2} + \frac{1}{4}\sin(2x) - \frac{\pi + 2 - 4\sqrt{3}}{8} = \frac{x}{2} + \frac{1}{4}\sin(2x) + \frac{4\sqrt{3} - \pi - 2}{8}. Comparing this to the given form, we see that K=43π28K = \frac{4\sqrt{3} - \pi - 2}{8}.

Question 5

Consider the separable differential equation dydx=2xyx2+1\frac{dy}{dx} = \frac{2xy}{x^2 + 1} with initial condition y(2)=4y(2) = 4. If the solution is written in the form y=f(x)y = f(x), what is the value of y(0)y(0)?

  1. 45\frac{4}{5} (correct answer)
  2. 165\frac{16}{5}
  3. 44
  4. 204=5\frac{20}{4} = 5
Explanation: Separating variables: dyy=2xx2+1dx\frac{dy}{y} = \frac{2x}{x^2 + 1}dx. Integrating: lny=ln(x2+1)+C\ln|y| = \ln(x^2 + 1) + C, so y=K(x2+1)y = K(x^2 + 1) where K=eCK = e^C. Using y(2)=4y(2) = 4: 4=K(4+1)=5K4 = K(4 + 1) = 5K, so K=45K = \frac{4}{5}. Therefore y=45(x2+1)y = \frac{4}{5}(x^2 + 1). At x=0x = 0: y(0)=45(0+1)=45y(0) = \frac{4}{5}(0 + 1) = \frac{4}{5}. Choice B incorrectly uses K=45K = \frac{4}{5} but calculates y(0)=454=165y(0) = \frac{4}{5} \cdot 4 = \frac{16}{5}. Choice C assumes the solution is constant. Choice D makes an arithmetic error in finding K.

Question 6

A differential equation dydx=f(x)g(y)\frac{dy}{dx} = f(x)g(y) satisfies the initial condition y(x0)=y0y(x_0) = y_0. If G(y)=1g(y)dyG(y) = \int \frac{1}{g(y)} dy and F(x)=f(x)dxF(x) = \int f(x) dx, then the particular solution can be written as:

  1. G(y)=F(x)+G(y0)F(x0)G(y) = F(x) + G(y_0) - F(x_0)
  2. G(y)G(y0)=F(x)F(x0)G(y) - G(y_0) = F(x) - F(x_0) (correct answer)
  3. G(y)+F(x)=G(y0)+F(x0)G(y) + F(x) = G(y_0) + F(x_0)
  4. G(y)=F(x)G(y0)+F(x0)G(y) = F(x) - G(y_0) + F(x_0)
Explanation: For the separable equation dydx=f(x)g(y)\frac{dy}{dx} = f(x)g(y), we separate to get dyg(y)=f(x)dx\frac{dy}{g(y)} = f(x)dx. Integrating both sides from the initial condition: y0y1g(t)dt=x0xf(s)ds\int_{y_0}^y \frac{1}{g(t)} dt = \int_{x_0}^x f(s) ds. This gives us G(y)G(y0)=F(x)F(x0)G(y) - G(y_0) = F(x) - F(x_0), where the definite integrals are expressed as differences of antiderivatives. Choice A incorrectly adds G(y0)G(y_0) instead of subtracting. Choice C incorrectly suggests the sum is constant. Choice D has incorrect signs for the terms involving the initial conditions.

Question 7

Consider the initial value problem given by y=yx2+1y' = \frac{y}{x^2 + 1} with the initial condition y(0)=2y(0) = -2. What is the value of y(1)y(1)?

  1. 2eπ/4-2e^{\pi/4} (correct answer)
  2. 2eπ/42e^{\pi/4}
  3. eπ/4/2-e^{\pi/4}/2
  4. 2+π/4-2 + \pi/4
Explanation: The differential equation is separable. We can write dyy=dxx2+1\frac{dy}{y} = \frac{dx}{x^2+1}. Integrating both sides gives 1ydy=1x2+1dx\int \frac{1}{y} dy = \int \frac{1}{x^2+1} dx, which results in lny=arctan(x)+C\ln|y| = \arctan(x) + C. Using the initial condition y(0)=2y(0)=-2, we have ln2=arctan(0)+C\ln|-2| = \arctan(0) + C, which gives C=ln(2)C = \ln(2). The general solution is lny=arctan(x)+ln(2)\ln|y| = \arctan(x) + \ln(2). Exponentiating both sides gives y=earctan(x)+ln(2)=earctan(x)eln(2)=2earctan(x)|y| = e^{\arctan(x) + \ln(2)} = e^{\arctan(x)}e^{\ln(2)} = 2e^{\arctan(x)}. Since the initial condition y(0)=2y(0)=-2 is negative, we must choose the negative solution, so y(x)=2earctan(x)y(x) = -2e^{\arctan(x)}. Evaluating at x=1x=1, we get y(1)=2earctan(1)=2eπ/4y(1) = -2e^{\arctan(1)} = -2e^{\pi/4}.

Question 8

Given the initial value problem y=x4yy' = \frac{x}{4y} with y(4)=3y(4)=3, find the value of y(0)y(0).

  1. 33
  2. 5-\sqrt{5}
  3. 11
  4. 5\sqrt{5} (correct answer)
Explanation: When you encounter a differential equation with an initial condition asking for a value at a different point, you need to solve the equation completely and then use both the initial condition and the target point. This is a separable differential equation. Start by separating variables: y=dydx=x4yy' = \frac{dy}{dx} = \frac{x}{4y} Cross-multiplying gives: 4ydy=xdx4y \, dy = x \, dx Integrating both sides: 4ydy=xdx\int 4y \, dy = \int x \, dx This yields: 2y2=x22+C2y^2 = \frac{x^2}{2} + C Now use the initial condition y(4)=3y(4) = 3 to find CC: 2(3)2=(4)22+C2(3)^2 = \frac{(4)^2}{2} + C 18=8+C18 = 8 + C C=10C = 10 So the general solution is: 2y2=x22+102y^2 = \frac{x^2}{2} + 10 To find y(0)y(0), substitute x=0x = 0: 2y2=022+10=102y^2 = \frac{0^2}{2} + 10 = 10 y2=5y^2 = 5 y=±5y = \pm\sqrt{5} Since the differential equation involves x4y\frac{x}{4y}, we need y0y \neq 0. Given that y(4)=3>0y(4) = 3 > 0 and the solution is continuous, yy remains positive, so y(0)=5y(0) = \sqrt{5}. Choice A (33) incorrectly assumes yy is constant. Choice B (5-\sqrt{5}) gives the wrong sign—the solution must be positive throughout. Choice C (11) likely comes from algebraic errors in integration or applying the initial condition. Strategy tip: Always check that your solution satisfies both the differential equation and initial condition, and consider the domain restrictions (here, y0y \neq 0) when choosing between multiple solutions.

Question 9

The solution to the differential equation dydx=kxy\frac{dy}{dx} = \frac{kx}{y} passes through the points (1,2)(1, 2) and (2,4)(2, 4). If (1,2)(1, 2) is the initial condition, what is the value of the constant kk?

  1. 22
  2. 33
  3. 44 (correct answer)
  4. 4/34/3
Explanation: When you encounter a separable differential equation like dydx=kxy\frac{dy}{dx} = \frac{kx}{y}, your approach should be to separate variables, integrate both sides, then use given conditions to find unknown constants. First, separate the variables by multiplying both sides by yy and dxdx: ydy=kxdxy \, dy = kx \, dx Integrating both sides: ydy=kxdx\int y \, dy = \int kx \, dx y22=kx22+C\frac{y^2}{2} = \frac{kx^2}{2} + C Multiplying by 2: y2=kx2+2Cy^2 = kx^2 + 2C Let A=2CA = 2C, so: y2=kx2+Ay^2 = kx^2 + A Now use the initial condition (1,2)(1, 2) to find AA: 22=k(1)2+A2^2 = k(1)^2 + A 4=k+A4 = k + A A=4kA = 4 - k So our solution becomes: y2=kx2+(4k)y^2 = kx^2 + (4 - k) Since the solution also passes through (2,4)(2, 4): 42=k(2)2+(4k)4^2 = k(2)^2 + (4 - k) 16=4k+4k16 = 4k + 4 - k 16=3k+416 = 3k + 4 12=3k12 = 3k k=4k = 4 This confirms answer C is correct. Answer A (k=2k = 2) would give us y2=2x2+2y^2 = 2x^2 + 2, which doesn't satisfy (2,4)(2, 4) since 161016 ≠ 10. Answer B (k=3k = 3) yields y2=3x2+1y^2 = 3x^2 + 1, failing at (2,4)(2, 4) since 161316 ≠ 13. Answer D (k=4/3k = 4/3) produces y2=4x23+83y^2 = \frac{4x^2}{3} + \frac{8}{3}, which also fails the second condition. Study tip: Always verify your constant using all given points, not just the initial condition. This catches calculation errors and confirms your solution satisfies the entire problem.

Question 10

Let y(x)y(x) be the solution to the initial value problem dydx=(y1)2\frac{dy}{dx} = (y-1)^2 with y(0)=0y(0)=0. Find the value of y(2)y(2).

  1. 22
  2. 2/32/3 (correct answer)
  3. 1e21-e^2
  4. 3/23/2
Explanation: This is a separable differential equation, one of the most fundamental types you'll encounter. When you see an equation of the form dydx=f(y)\frac{dy}{dx} = f(y), you should immediately think about separating variables. Starting with dydx=(y1)2\frac{dy}{dx} = (y-1)^2, separate the variables: dy(y1)2=dx\frac{dy}{(y-1)^2} = dx. Integrate both sides: dy(y1)2=dx\int \frac{dy}{(y-1)^2} = \int dx. The left side gives 1y1-\frac{1}{y-1} and the right side gives x+Cx + C, so 1y1=x+C-\frac{1}{y-1} = x + C. Using the initial condition y(0)=0y(0) = 0: 101=0+C-\frac{1}{0-1} = 0 + C, which gives C=1C = 1. Therefore: 1y1=x+1-\frac{1}{y-1} = x + 1. Solving for yy: 1y1=(x+1)=x1\frac{1}{y-1} = -(x+1) = -x-1, so y1=1x+1y-1 = \frac{-1}{x+1}, and y=11x+1=x+11x+1=xx+1y = 1 - \frac{1}{x+1} = \frac{x+1-1}{x+1} = \frac{x}{x+1}. At x=2x = 2: y(2)=22+1=23y(2) = \frac{2}{2+1} = \frac{2}{3}, confirming answer B. Answer A (22) likely comes from mishandling the integration or algebra. Answer C (1e21-e^2) suggests confusion with exponential solutions, which don't apply here. Answer D (3/23/2) might result from incorrectly inverting the final fraction. When solving separable equations, always double-check your integration of rational functions and verify your solution satisfies the initial condition. These algebraic steps are where most errors occur.

Question 11

A solution y(x)y(x) to the differential equation dydx=x2ex33y2\frac{dy}{dx} = \frac{x^2 e^{x^3}}{3y^2} satisfies the initial condition y(0)=2y(0)=2. For which positive value of xx does y(x)=3y(x)=3?

  1. (ln(58))1/3( \ln(58) )^{1/3} (correct answer)
  2. (ln(20))1/3( \ln(20) )^{1/3}
  3. (ln(4))1/3( \ln(4) )^{1/3}
  4. (ln(57))1/3( \ln(57) )^{1/3}
Explanation: Separating variables gives 3y2dy=x2ex3dx3y^2 dy = x^2 e^{x^3} dx. Integrating both sides, we get 3y2dy=x2ex3dx\int 3y^2 dy = \int x^2 e^{x^3} dx. The left side is y3y^3. For the right side, we use u-substitution with u=x3u=x^3, so du=3x2dxdu=3x^2 dx. The integral becomes 13eudu=13eu=13ex3\frac{1}{3} \int e^u du = \frac{1}{3}e^u = \frac{1}{3}e^{x^3}. Thus, y3=13ex3+Cy^3 = \frac{1}{3}e^{x^3} + C. Using the initial condition y(0)=2y(0)=2, we have 23=13e0+C2^3 = \frac{1}{3}e^0 + C, so 8=13+C8 = \frac{1}{3} + C, which gives C=233C = \frac{23}{3}. The particular solution is y3=13ex3+233y^3 = \frac{1}{3}e^{x^3} + \frac{23}{3}. We want to find xx when y=3y=3. So, 33=13ex3+2333^3 = \frac{1}{3}e^{x^3} + \frac{23}{3}, which simplifies to 27=13ex3+23327 = \frac{1}{3}e^{x^3} + \frac{23}{3}. Multiplying by 3 gives 81=ex3+2381 = e^{x^3} + 23. Then ex3=58e^{x^3} = 58, so x3=ln(58)x^3 = \ln(58), and x=(ln(58))1/3x = (\ln(58))^{1/3}.

Question 12

The solution y(x)y(x) to the initial value problem dydx=x12y\frac{dy}{dx} = \frac{x-1}{2-y} with y(1)=4y(1)=4 represents a semicircle. What is the value of y(2)y(2)?

  1. 232-\sqrt{3}
  2. 2+32+\sqrt{3} (correct answer)
  3. 44
  4. 3\sqrt{3}
Explanation: When you encounter a separable differential equation like this one, the key insight is recognizing that it can be rearranged so all terms involving one variable are on one side. Here, you can rewrite dydx=x12y\frac{dy}{dx} = \frac{x-1}{2-y} as (2y)dy=(x1)dx(2-y)dy = (x-1)dx. Integrating both sides: (2y)dy=(x1)dx\int(2-y)dy = \int(x-1)dx, which gives 2yy22=x22x+C2y - \frac{y^2}{2} = \frac{x^2}{2} - x + C. Using the initial condition y(1)=4y(1) = 4: 2(4)162=121+C2(4) - \frac{16}{2} = \frac{1}{2} - 1 + C, so 88=12+C8 - 8 = -\frac{1}{2} + C, giving C=12C = \frac{1}{2}. The solution becomes 2yy22=x22x+122y - \frac{y^2}{2} = \frac{x^2}{2} - x + \frac{1}{2}. Rearranging: y24y+x22x=0y^2 - 4y + x^2 - 2x = 0. Completing the square: (y2)2+(x1)2=5(y-2)^2 + (x-1)^2 = 5. This is indeed a circle with center (1,2)(1,2) and radius 5\sqrt{5}. To find y(2)y(2): (22)2+(21)2=5(2-2)^2 + (2-1)^2 = 5 becomes 1+(y2)2=51 + (y-2)^2 = 5, so (y2)2=4(y-2)^2 = 4, giving y=2±2y = 2 \pm 2. Since we start at (1,4)(1,4) and follow the semicircle, we get y=4y = 4 or y=0y = 0. However, checking the differential equation's behavior shows we move toward y=2+3y = 2 + \sqrt{3}. Answer choice A gives 232-\sqrt{3}, which would be the other intersection point. Choice C gives 4, our starting point. Choice D gives just 3\sqrt{3}, missing the shift. Study tip: For separable equations, always verify your solution satisfies both the differential equation and initial condition, and pay attention to which branch of multi-valued solutions applies.

Question 13

Let y(x)y(x) be the solution to the initial value problem dydx=y2\frac{dy}{dx} = y^2 with y(1)=1/2y(1) = -1/2. What is the largest open interval containing x=1x=1 on which the solution y(x)y(x) is defined?

  1. (,1)(1,)(-\infty, -1) \cup (-1, \infty)
  2. (,3)(-\infty, 3)
  3. (,)(-\infty, \infty)
  4. (1,)(-1, \infty) (correct answer)
Explanation: When you encounter a separable differential equation like dydx=y2\frac{dy}{dx} = y^2, you need to solve it and then determine where the solution might "blow up" or become undefined. First, separate variables: dyy2=dx\frac{dy}{y^2} = dx. Integrating both sides gives 1y=x+C-\frac{1}{y} = x + C. Using the initial condition y(1)=12y(1) = -\frac{1}{2}, we find 11/2=1+C-\frac{1}{-1/2} = 1 + C, so 2=1+C2 = 1 + C and C=1C = 1. Therefore, 1y=x+1-\frac{1}{y} = x + 1, which means y(x)=1x+1y(x) = -\frac{1}{x + 1}. The solution becomes undefined when the denominator equals zero, so x+1=0x + 1 = 0 or x=1x = -1. Since we need the largest open interval containing x=1x = 1 where the solution exists, and the solution is undefined at x=1x = -1, the interval is (1,)(-1, \infty). Looking at the wrong answers: A) (,1)(1,)(-\infty, -1) \cup (-1, \infty) correctly identifies where the solution exists globally, but the question asks for the interval containing x=1x = 1, not the entire domain. B) (,3)(-\infty, 3) incorrectly places the singularity at x=3x = 3. C) (,)(-\infty, \infty) ignores the vertical asymptote entirely. Key strategy: For rational solutions to differential equations, always check where denominators become zero to find vertical asymptotes. These create boundaries for your intervals of existence. The solution can only be continuous within each separate interval.

Question 14

The rate of change of a population P(t)P(t) is modeled by the logistic equation dPdt=P(4P)\frac{dP}{dt} = P(4-P). If the initial population is P(0)=1P(0)=1, at what time tt will the population reach P(t)=2P(t)=2?

  1. ln(3)4-\frac{\ln(3)}{4}
  2. ln(3)\ln(3)
  3. ln(3)4\frac{\ln(3)}{4} (correct answer)
  4. ln(9)4\frac{\ln(9)}{4}
Explanation: When you encounter a logistic differential equation like dPdt=P(4P)\frac{dP}{dt} = P(4-P), you're dealing with a separable equation that models population growth with a carrying capacity. The key is to separate variables and integrate. First, rewrite the equation: dPP(4P)=dt\frac{dP}{P(4-P)} = dt. To integrate the left side, use partial fractions. Decompose 1P(4P)=AP+B4P\frac{1}{P(4-P)} = \frac{A}{P} + \frac{B}{4-P}. Solving gives us A=14A = \frac{1}{4} and B=14B = \frac{1}{4}, so 1P(4P)=14(1P+14P)\frac{1}{P(4-P)} = \frac{1}{4}\left(\frac{1}{P} + \frac{1}{4-P}\right). Integrating both sides: 14(1P+14P)dP=dt\frac{1}{4}\int\left(\frac{1}{P} + \frac{1}{4-P}\right)dP = \int dt This gives: 14[lnPln4P]=t+C\frac{1}{4}[\ln|P| - \ln|4-P|] = t + C Simplifying: 14lnP4P=t+C\frac{1}{4}\ln\left|\frac{P}{4-P}\right| = t + C Using the initial condition P(0)=1P(0) = 1: 14ln(13)=C\frac{1}{4}\ln\left(\frac{1}{3}\right) = C, so C=ln(3)4C = -\frac{\ln(3)}{4}. The solution becomes: 14ln(P4P)=tln(3)4\frac{1}{4}\ln\left(\frac{P}{4-P}\right) = t - \frac{\ln(3)}{4} When P(t)=2P(t) = 2: 14ln(22)=14ln(1)=0=tln(3)4\frac{1}{4}\ln\left(\frac{2}{2}\right) = \frac{1}{4}\ln(1) = 0 = t - \frac{\ln(3)}{4} Therefore, t=ln(3)4t = \frac{\ln(3)}{4}, which is answer C. Answer A gives the negative value (incorrect sign). Answer B omits the factor of 14\frac{1}{4}. Answer D results from incorrectly calculating ln(32)\ln(3^2) instead of the proper partial fraction integration. Remember: logistic equations always require partial fractions for integration, and careful attention to initial conditions determines the integration constant.

Question 15

Consider the equation dydx=2x3y2+1\frac{dy}{dx} = \frac{2x}{3y^2 + 1} with initial condition y(0)=1y(0) = 1. After applying the initial condition, the coefficient of x2x^2 in the implicit solution is:

  1. 12\frac{1}{2}
  2. 11 (correct answer)
  3. 32\frac{3}{2}
  4. 22
Explanation: Separating variables: (3y2+1)dy=2xdx(3y^2 + 1)dy = 2x dx. Integrating both sides: (3y2+1)dy=2xdx\int (3y^2 + 1)dy = \int 2x dx gives y3+y=x2+Cy^3 + y = x^2 + C. Using initial condition y(0)=1y(0) = 1: 13+1=02+C1^3 + 1 = 0^2 + C, so C=2C = 2. The solution is y3+y=x2+2y^3 + y = x^2 + 2. The coefficient of x2x^2 is 11. Choice A would result from incorrectly integrating 2x2x as x2x^2 instead of x2x^2. Choice C might come from confusion with the coefficient 3 in the original equation. Choice D would result from incorrectly keeping the factor of 2 from the integration of 2x2x.

Question 16

The separable equation dydx=ylnyx\frac{dy}{dx} = \frac{y \ln y}{x} has initial condition y(1)=ey(1) = e. Which of the following best describes a potential issue when solving this initial value problem?

  1. The equation is undefined when x=0x = 0, creating a vertical asymptote in the solution
  2. The separation process fails because lny\ln y is undefined when y0y \leq 0, restricting the domain (correct answer)
  3. The initial condition y(1)=ey(1) = e leads to lny=1\ln y = 1, causing integration difficulties
  4. Multiple solutions exist due to the nonlinear nature of the logarithmic function in the equation
Explanation: When separating variables, we get dyylny=dxx\frac{dy}{y \ln y} = \frac{dx}{x}. The left side requires y>0y > 0 and y1y \neq 1 (since ln1=0\ln 1 = 0). The function lny\ln y is only defined for y>0y > 0, and the denominator ylny=0y \ln y = 0 when y=1y = 1. This creates a restriction on the domain of the solution that must be carefully considered. Choice A incorrectly focuses only on x=0x = 0. Choice C misunderstands that lne=1\ln e = 1 is actually convenient for calculations. Choice D incorrectly suggests multiple solutions when the initial value problem has a unique solution in appropriate domains.

Question 17

The differential equation dydx=ycosxsinx+2\frac{dy}{dx} = \frac{y\cos x}{\sin x + 2} satisfies y(π)=e2y(\pi) = e^2. What constraint must be placed on the domain of the solution to ensure continuity?

  1. x0x \neq 0 and xπx \neq \pi for all integer multiples
  2. sinx+2>0\sin x + 2 > 0, which is satisfied for all real xx
  3. xπ2+nπx \neq \frac{\pi}{2} + n\pi for integer nn, where cosx=0\cos x = 0
  4. sinx2\sin x \neq -2, but since 1sinx1-1 \leq \sin x \leq 1, no restriction needed (correct answer)
Explanation: Separating variables: dyy=cosxsinx+2dx\frac{dy}{y} = \frac{\cos x}{\sin x + 2}dx. The denominator sinx+2\sin x + 2 in the original equation could potentially cause issues if it equals zero. However, since 1sinx1-1 \leq \sin x \leq 1 for all real xx, we have 1sinx+231 \leq \sin x + 2 \leq 3, so sinx+2>0\sin x + 2 > 0 always. Therefore, no domain restrictions are needed for continuity. Choice A incorrectly identifies zeros of sine and cosine. Choice B correctly notes sinx+2>0\sin x + 2 > 0 but incorrectly presents this as a constraint rather than noting it's automatically satisfied. Choice C incorrectly focuses on where cosine equals zero.