(Dummy) Sample research-note article
This is a dummy article. It is a sample used to check the display quality of math, code blocks, and tables in the research-note category. It contains no facts or research results about the lab. Both the math and the code are ordinary textbook-level content.
Checking math rendering
As an example of inline math, the phase velocity can be written as , where is the speed of light in vacuum and is the refractive index of the medium.
Two of Maxwell’s equations are shown below as block math.
These are ordinary relations found in electromagnetism textbooks and do not represent any claim specific to this site.
Checking code block rendering
The following is an ordinary Python snippet that computes the mean of a list of numbers.
def mean(values: list[float]) -> float:
return sum(values) / len(values)
if __name__ == "__main__":
sample = [1.0, 2.0, 3.0, 4.0]
print(mean(sample))
Checking table rendering
The symbols used in the equations above, with their general meaning and unit.
| Symbol | Meaning | Unit |
|---|---|---|
| Speed of light in vacuum | m/s | |
| Refractive index | dimensionless | |
| Wavelength | m |