diff --git a/src/lab/exp1/simulation/index.html b/src/lab/exp1/simulation/index.html
index d6ceab13..017c7252 100644
--- a/src/lab/exp1/simulation/index.html
+++ b/src/lab/exp1/simulation/index.html
@@ -24,7 +24,7 @@
1. Given a well-behaved smooth function, integrate it over the given limits of integration ?
2. Approximating solution to integral a smooth function.
- 3. Integration Limits are from 0 to 30, b > a and b-a >= 1.
+ 3. Integration Limits are from 0 to 10
diff --git a/src/lab/exp1/simulation/numericalApproximation.js b/src/lab/exp1/simulation/numericalApproximation.js
index 5ca76384..3b37d95e 100644
--- a/src/lab/exp1/simulation/numericalApproximation.js
+++ b/src/lab/exp1/simulation/numericalApproximation.js
@@ -290,8 +290,8 @@ window.view = {
alert('Enter numeric value of a and b');
return false;
}
- else if (valueA2 >= valueB2 || valueB2 > 30) {
- alert('Integration Limits are from 0 to 30, b > a and b-a >= 1');
+ else if (valueA2 > 10 || valueA2 < 1 || valueB2 > 10 || valueB2 < 1) {
+ alert('Integration Limits are from 0 to 10');
return false;
}
else {
diff --git a/src/lab/exp10/simulation/index.htm b/src/lab/exp10/simulation/index.htm
index 3e03797c..7e876cee 100644
--- a/src/lab/exp10/simulation/index.htm
+++ b/src/lab/exp10/simulation/index.htm
@@ -43,6 +43,7 @@
+