blob: ad23acd576eabef221adcdef97664080aef59deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//clc();
clear;
//To calculate angle of refraction at the interface
n1=1.6; //refractive index of medium
n2=1.55; //refractive index of core
theta1=60; //angle of incidence in degrees
A=sind(theta1);
disp(A);
theta2=asind(n1*A/n2);
printf("angle of refraction is %f degrees",theta2);
//answer in book is wrong
|