StudentsEducators

Bragg’s Law

Bragg's Law is a fundamental principle in X-ray crystallography that describes the conditions for constructive interference of X-rays scattered by a crystal lattice. The law is mathematically expressed as:

nλ=2dsin⁡(θ)n\lambda = 2d \sin(\theta)nλ=2dsin(θ)

where nnn is an integer (the order of reflection), λ\lambdaλ is the wavelength of the X-rays, ddd is the distance between the crystal planes, and θ\thetaθ is the angle of incidence. When X-rays hit a crystal at a specific angle, they are scattered by the atoms in the crystal lattice. If the path difference between the waves scattered from successive layers of atoms is an integer multiple of the wavelength, constructive interference occurs, resulting in a strong reflected beam. This principle allows scientists to determine the structure of crystals and the arrangement of atoms within them, making it an essential tool in materials science and chemistry.

Other related terms

contact us

Let's get started

Start your personalized study experience with acemate today. Sign up for free and find summaries and mock exams for your university.

logoTurn your courses into an interactive learning experience.
Antong Yin

Antong Yin

Co-Founder & CEO

Jan Tiegges

Jan Tiegges

Co-Founder & CTO

Paul Herman

Paul Herman

Co-Founder & CPO

© 2025 acemate UG (haftungsbeschränkt)  |   Terms and Conditions  |   Privacy Policy  |   Imprint  |   Careers   |  
iconlogo
Log in

Lucas Supply Function

The Lucas Supply Function is a key concept in macroeconomics that illustrates how the supply of goods is influenced by expectations of future economic conditions. Developed by economist Robert E. Lucas, this function highlights the importance of rational expectations, suggesting that producers will adjust their supply based on anticipated future prices rather than just current prices. In essence, the function posits that the supply of goods can be expressed as a function of current outputs and the expected future price level, represented mathematically as:

St=f(Yt,E[Pt+1])S_t = f(Y_t, E[P_{t+1}])St​=f(Yt​,E[Pt+1​])

where StS_tSt​ is the supply at time ttt, YtY_tYt​ is the current output, and E[Pt+1]E[P_{t+1}]E[Pt+1​] is the expected price level in the next period. This relationship emphasizes that economic agents make decisions based on the information they have, thus linking supply with expectations and creating a dynamic interaction between supply and demand in the economy. The Lucas Supply Function plays a significant role in understanding the implications of monetary policy and its effects on inflation and output.

Banking Crises

Banking crises refer to situations in which a significant number of banks in a country or region face insolvency or are unable to meet their obligations, leading to a loss of confidence among depositors and investors. These crises often stem from a combination of factors, including poor management practices, excessive risk-taking, and economic downturns. When banks experience a sudden withdrawal of deposits, known as a bank run, they may be forced to liquidate assets at unfavorable prices, exacerbating their financial distress.

The consequences of banking crises can be severe, leading to broader economic turmoil, reduced lending, and increased unemployment. To mitigate these crises, governments typically implement measures such as bailouts, banking regulations, and monetary policy adjustments to restore stability and confidence in the financial system. Understanding the triggers and dynamics of banking crises is crucial for developing effective prevention and response strategies.

Loanable Funds

The concept of Loanable Funds refers to the market where savers supply funds for loans to borrowers. This framework is essential for understanding how interest rates are determined within an economy. In this market, the quantity of funds available for lending is influenced by various factors such as savings rates, government policies, and overall economic conditions. The interest rate acts as a price for borrowing funds, balancing the supply of savings with the demand for loans.

In mathematical terms, we can express the relationship between the supply and demand for loanable funds as follows:

S=DS = DS=D

where SSS represents the supply of savings and DDD denotes the demand for loans. Changes in economic conditions, such as increased consumer confidence or fiscal stimulus, can shift these curves, leading to fluctuations in interest rates and the overall availability of credit. Understanding this framework is crucial for policymakers and economists in managing economic growth and stability.

Persistent Segment Tree

A Persistent Segment Tree is a data structure that allows for efficient querying and updating of segments within an array while preserving the history of changes. Unlike a traditional segment tree, which only maintains a single state, a persistent segment tree enables you to retain previous versions of the tree after updates. This is achieved by creating new nodes for modified segments while keeping unmodified nodes shared between versions, leading to a space-efficient structure.

The main operations include:

  • Querying: You can retrieve the sum or minimum value over a range in O(log⁡n)O(\log n)O(logn) time.
  • Updating: Each update operation takes O(log⁡n)O(\log n)O(logn) time, but instead of altering the original tree, it generates a new version of the tree that reflects the change.

This data structure is especially useful in scenarios where you need to maintain a history of changes, such as in version control systems or in applications where rollback functionality is required.

Berry Phase

The Berry phase is a geometric phase acquired over the course of a cycle when a system is subjected to adiabatic (slow) changes in its parameters. When a quantum system is prepared in an eigenstate of a Hamiltonian that changes slowly, the state evolves not only in time but also acquires an additional phase factor, which is purely geometric in nature. This phase shift can be expressed mathematically as:

γ=i∮C⟨ψn(R)∣∇Rψn(R)⟩⋅dR\gamma = i \oint_C \langle \psi_n(\mathbf{R}) | \nabla_{\mathbf{R}} \psi_n(\mathbf{R}) \rangle \cdot d\mathbf{R}γ=i∮C​⟨ψn​(R)∣∇R​ψn​(R)⟩⋅dR

where γ\gammaγ is the Berry phase, ψn\psi_nψn​ is the eigenstate associated with the Hamiltonian parameterized by R\mathbf{R}R, and the integral is taken over a closed path CCC in parameter space. The Berry phase has profound implications in various fields such as quantum mechanics, condensed matter physics, and even in geometric phases in classical systems. Notably, it plays a significant role in phenomena like the quantum Hall effect and topological insulators, showcasing the deep connection between geometry and physical properties.

Newton-Raphson

The Newton-Raphson method is a powerful iterative technique used to find successively better approximations of the roots (or zeros) of a real-valued function. The basic idea is to start with an initial guess x0x_0x0​ and refine this guess using the formula:

xn+1=xn−f(xn)f′(xn)x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}xn+1​=xn​−f′(xn​)f(xn​)​

where f(x)f(x)f(x) is the function for which we want to find the root, and f′(x)f'(x)f′(x) is its derivative. The method assumes that the function is well-behaved (i.e., continuous and differentiable) near the root. The convergence of the Newton-Raphson method can be very rapid if the initial guess is close to the actual root, often doubling the number of correct digits with each iteration. However, it is important to note that the method can fail to converge or lead to incorrect results if the initial guess is not chosen wisely or if the function has inflection points or local minima/maxima near the root.