Given triangle 1 with sides of length a, b, and c. Triangle 2 is constructed within triangle 1 by bisecting each side. Triangle 3 is constructed within triangle 2 by bisecting each of triangle 2's sides. And so on.
Find the area of triangle n.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers16
Suggested Problems
-
Return the 3n+1 sequence for n
8491 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
647 Solvers
-
Find Index of maximum Value and maximum Value of a vector
168 Solvers
-
interesting center of magic matrix
111 Solvers
-
Find Rows with Specift Properities
301 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The test
assert(your_fcn_name(a,b,c,n) - y_correct < y_correct/1000)
should be
assert(abs(your_fcn_name(a,b,c,n) - y_correct) < y_correct/1000)