Final answer:
The true statement about choosing a recursive method is that the problem naturally has a recursive solution.
Step-by-step explanation:
The true statement about choosing a recursive method is that the problem naturally has a recursive solution.
Choosing a recursive method is appropriate when the problem can be expressed in terms of smaller instances of the same problem. In other words, the problem can be divided into sub-problems that are similar in nature to the original problem.
For example, calculating the factorial of a number can be solved recursively by expressing the factorial of n as n times the factorial of (n-1). This recursive solution is natural and intuitive for this problem.