I should have given more explanations in my first response in this discussion. The attached notebook has some more detailed answers.
In many cases I find it helpful to look at the sampling points used by NIntegrate. Using the sampling points plots I can figure out which integration strategy and integration rule has been applied -- each integration strategy and integration rule has a unique pattern of sampling points.
The second section of the attached notebook has some examples that demonstrate the previous statement.
One can also use the "NIntegrate Explorer" to build knowledge or proficiency in determining NIntegrate's methods by the plots of the sampling points. See the tutorial example "GUIKit Example: NIntegrate Explorer" in the documentation. (It can be found by searching for "NIntegrateExplorer" in the help browser.)
Further, we can use the undocumented NIntegrate option IntegrationMonitor in order to obtain more detailed information of the integration rules and integrands used. This is demonstrated in the third section.
We can also look at the definition of the default, automatic integration strategy in order to see which methods are applied and in what order. This shown in the fourth section.
The fifth section shows and describes code for tracing the initialization of NIntegrate
's methods for the computation of concrete integrals.
Attachments: