ワンクリックで
fourier-spectral-analysis
// Use when decomposing signals or fields into frequency/momentum components, applying Fourier transforms, or using spectral methods to solve differential equations.
// Use when decomposing signals or fields into frequency/momentum components, applying Fourier transforms, or using spectral methods to solve differential equations.
MCTS-based autonomous physics problem solver with arXiv search, prior knowledge retrieval, and multi-agent reasoning. Use when you need to solve physics problems, search arXiv for relevant papers, or generate structured physics solutions with iterative refinement.
Use when solving problems involving Maxwell's equations, electrostatics, magnetostatics, electromagnetic waves, radiation, or relativistic electrodynamics.
Use when applying conservation of energy, momentum, angular momentum, charge, or other conserved quantities to constrain or solve a physical system.
Use when checking dimensional consistency, estimating physical scales, or deriving functional forms via the Buckingham Pi theorem.
Use when solving ordinary or partial differential equations numerically, including choosing integrators, discretization schemes, and stability analysis.
Use when solving a problem by expanding around a known solution in a small parameter, including regular and singular perturbation theory.
| name | fourier_spectral_analysis |
| description | Use when decomposing signals or fields into frequency/momentum components, applying Fourier transforms, or using spectral methods to solve differential equations. |
Apply this skill when the problem involves transforming between position/time and momentum/frequency domains, analyzing spectral content of signals or fields, or solving differential equations via spectral decomposition.
Perform Fourier transforms (continuous or discrete), analyze spectral properties, and apply spectral methods to solve physical problems efficiently.
signal_or_field: The function, data set, or field to be transformeddomain: Spatial/temporal domain specification (extent, sampling rate, boundary conditions)transform_type: Which transform to apply (continuous FT, DFT/FFT, Laplace, etc.)analysis_goal: What to extract (frequency content, transfer function, spectral solution of PDE, etc.)transformed_result: The Fourier (or other spectral) transform of the inputspectral_analysis: Power spectrum, dominant frequencies, bandwidthspectral_solution: Solution to a differential equation obtained via spectral methodsnumerical_code: Python implementation using numpy.fft or scipy.fftChoose the appropriate transform.
Apply the transform.
Analyze in the spectral domain.
Transform back (if needed).
Handle numerical aspects.