ForHosting KIT · Developer Utilities

Unpolarized light through polarizer calculator

This unpolarized light through polarizer calculator finds the intensity transmitted by one ideal linear polarizer.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Enter any nonnegative incident intensity, using watts per square meter or another consistent unit, and the result is exactly one half of that value. The calculation describes truly unpolarized light and an ideal polarizer, so it does not require a polarizer angle. It returns the original intensity, transmitted intensity, and the fixed transmission fraction for clear use in lessons, laboratory planning, and optical-system estimates.

Why an ideal polarizer transmits one half

Unpolarized light has no single preferred electric-field direction. Over time, its transverse field orientations are distributed uniformly around the direction of travel. An ideal linear polarizer selects the component along one transmission axis. For a field at an angle to that axis, the transmitted intensity follows the squared projection, represented by the cosine squared of the angle. Averaging that factor over all equally represented orientations gives exactly one half. Therefore, if the incident intensity is I, the transmitted intensity after one ideal polarizer is I divided by two. This result is not an approximation caused by rounding in the calculator; it is the ideal-model average. The output also reports a transmission fraction of 0.5 to make that relationship explicit. Because the incoming light is unpolarized, rotating the single polarizer does not change the average transmitted intensity. Its axis changes the polarization direction of the emerging light, but not the one-half intensity result under these assumptions.

How to enter and interpret intensity

Enter the incident intensity as a nonnegative finite number. You may use watts per square meter, milliwatts per square centimeter, or any other intensity unit appropriate to your work, because the calculation is a dimensionless scaling by one half. The transmitted result uses the same unit as the input, so you should record that unit alongside the value in your notes or application. For example, an input measured in watts per square meter produces an output in watts per square meter. Zero is valid and returns zero, while negative values are rejected because physical optical intensity cannot be negative. The calculator does not convert units, infer a unit, or reinterpret power as intensity. If you begin with total optical power rather than intensity, the same one-half factor applies in the ideal model when the beam is fully intercepted, but you should label the quantity as power. Automated API requests cost $0.002; the browser calculation uses the same deterministic formula.

Know when the one-half rule applies

Use this calculation when the incoming beam is unpolarized and passes through a single ideal linear polarizer. Those conditions matter. After the first polarizer, the emerging light is linearly polarized, so adding a second polarizer requires Malus's law and the angle between the two transmission axes. Likewise, partially polarized or already polarized incident light needs information about its polarization state and orientation; simply halving it can be wrong. A real polarizer also absorbs, reflects, or leaks some light beyond the ideal projection model. Its measured throughput may therefore be lower or otherwise differ from one half, and manufacturer transmission data should be used for engineering tolerances. This tool intentionally isolates the textbook baseline: no extinction ratio, spectral response, surface loss, beam geometry, or detector response is included. That narrow scope makes it useful for checking homework, establishing a reference value before adding component losses, and testing software that implements the standard unpolarized-light result.

Check an optics exercise

Confirm the ideal transmitted intensity before working on later polarizers or other optical elements.

Set a laboratory baseline

Estimate the ideal detector intensity after a first polarizer and compare it with a measured value.

Validate optical software

Use a deterministic one-half result as a regression case for a larger polarization calculation.

What formula does the calculator use?

It uses transmitted intensity = incident intensity / 2 for unpolarized light passing through one ideal linear polarizer.

Why is no polarizer angle required?

Unpolarized light contains uniformly distributed field orientations, so rotating a single ideal polarizer does not change the average transmitted intensity.

Which intensity units can I use?

Any consistent intensity unit works. The transmitted value is returned in the same unit as the incident value.

Does this work for already polarized light?

No. For linearly polarized incident light, use Malus's law with the angle between the light's polarization and the polarizer axis.

Does a real polarizer always transmit exactly half?

No. One half is the ideal result; real components can add absorption, reflection, leakage, and wavelength-dependent losses.

What does an API calculation cost?

Each API request costs $0.002. The calculation is also available free in the browser.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/optics/unpolarized-through-polarizer

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/optics/unpolarized-through-polarizer \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"incident_intensity":120}'
{
  "incident_intensity": 120
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "optics.unpolarized_through_polarizer",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →