diff --git a/src/lab/exp1/simulation/index.html b/src/lab/exp1/simulation/index.html
index d6ceab13..dea2f9d0 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, b > a and b-a >= 1.
diff --git a/src/lab/exp1/simulation/numericalApproximation.js b/src/lab/exp1/simulation/numericalApproximation.js
index 5ca76384..24923f7c 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 >= valueB2 || valueB2 > 10) {
+ alert('Integration Limits are from 0 to 10, b > a and b-a >= 1');
return false;
}
else {
diff --git a/src/lab/exp10/simulation/index.htm b/src/lab/exp10/simulation/index.htm
index 3e03797c..3e9c2158 100644
--- a/src/lab/exp10/simulation/index.htm
+++ b/src/lab/exp10/simulation/index.htm
@@ -40,6 +40,7 @@
+
@@ -77,4 +78,4 @@