There exists a prime integer which divides \(P(n)\).
Step 1: Define the function
$P(n) = 3^{2n+1} + 2^{n+2}$
Step 2: Try small values
$P(1) = 3^3 + 2^3 = 27 + 8 = 35 = 5 \cdot 7$
$P(2) = 3^5 + 2^4 = 243 + 16 = 259 = 7 \cdot 37$
$P(3) = 3^7 + 2^5 = 2187 + 32 = 2219$, not divisible by 5 or 3
Step 3: General form and induction for divisibility by 7
Assume $P(k) = 3^{2k+1} + 2^{k+2}$ is divisible by 7
Then: $P(k+1) = 3^{2k+3} + 2^{k+3} = 9 \cdot 3^{2k+1} + 2 \cdot 2^{k+2}$
Substitute: $P(k+1) = 9(7m - 2^{k+2}) + 2 \cdot 2^{k+2} = 63m - 7 \cdot 2^{k+2}$
$= 7(9m - 2^{k+2})$ ⟹ divisible by 7
Conclusion: There exists a prime integer (7) which divides $P(n)$ for all $n \in \mathbb{N}$.
Correct answer: There exists a prime integer which divides $P(n)$
What are the charges stored in the \( 1\,\mu\text{F} \) and \( 2\,\mu\text{F} \) capacitors in the circuit once current becomes steady? 
Which one among the following compounds will most readily be dehydrated under acidic condition?

Manufacturers supply a zener diode with zener voltage \( V_z=5.6\,\text{V} \) and maximum power dissipation \( P_{\max}=\frac14\,\text{W} \). This zener diode is used in the circuit shown. Calculate the minimum value of the resistance \( R_s \) so that the zener diode will not burn when the input voltage is \( V_{in}=10\,\text{V} \). 
Two charges \( +q \) and \( -q \) are placed at points \( A \) and \( B \) respectively which are at a distance \( 2L \) apart. \( C \) is the midpoint of \( AB \). The work done in moving a charge \( +Q \) along the semicircle CSD (\( W_1 \)) and along the line CBD (\( W_2 \)) are 
A piece of granite floats at the interface of mercury and water. If the densities of granite, water and mercury are \( \rho, \rho_1, \rho_2 \) respectively, the ratio of volume of granite in water to that in mercury is 
The principle of mathematical induction is a powerful technique used to prove that a statement is true for every natural number. The basic idea behind the principle is that if we can show that a statement is true for a base case (usually n=1 or n=0), and if we can show that whether the statement is true for some natural number ‘n’, then it must also be true for the next natural number n+1, then we can conclude that the statement is true for all natural numbers.
To use mathematical induction, we first prove the base case. Then we assume that the statement is true for some arbitrary natural number k, and use this assumption to prove that the statement is also true for k+1. This establishes that the statement is true for all natural numbers greater than or equal to the base case.
The principle of mathematical induction is widely used in mathematics, especially in number theory and combinatorics. It is also used in computer science to prove the correctness of algorithms and data structures.