What is Tree: Definition and 312 Discussions

In botany, a tree is a perennial plant with an elongated stem, or trunk, supporting branches and leaves in most species. In some usages, the definition of a tree may be narrower, including only wood plants with secondary growth, plants that are usable as lumber or plants above a specified height. In wider definitions, the taller palms, tree ferns, bananas, and bamboos are also trees. Trees are not a taxonomic group but include a variety of plant species that have independently evolved a trunk and branches as a way to tower above other plants to compete for sunlight. Trees tend to be long-lived, some reaching several thousand years old. Trees have been in existence for 370 million years. It is estimated that there are some three trillion mature trees in the world.A tree typically has many secondary branches supported clear of the ground by the trunk. This trunk typically contains woody tissue for strength, and vascular tissue to carry materials from one part of the tree to another. For most trees it is surrounded by a layer of bark which serves as a protective barrier. Below the ground, the roots branch and spread out widely; they serve to anchor the tree and extract moisture and nutrients from the soil. Above ground, the branches divide into smaller branches and shoots. The shoots typically bear leaves, which capture light energy and convert it into sugars by photosynthesis, providing the food for the tree's growth and development.
Trees usually reproduce using seeds. Flowers and fruit may be present, but some trees, such as conifers, instead have pollen cones and seed cones. Palms, bananas, and bamboos also produce seeds, but tree ferns produce spores instead.
Trees play a significant role in reducing erosion and moderating the climate. They remove carbon dioxide from the atmosphere and store large quantities of carbon in their tissues. Trees and forests provide a habitat for many species of animals and plants. Tropical rainforests are among the most biodiverse habitats in the world. Trees provide shade and shelter, timber for construction, fuel for cooking and heating, and fruit for food as well as having many other uses. In parts of the world, forests are shrinking as trees are cleared to increase the amount of land available for agriculture. Because of their longevity and usefulness, trees have always been revered, with sacred groves in various cultures, and they play a role in many of the world's mythologies.

View More On Wikipedia.org
  1. D

    AVLTree program and Binary Tree program help

    Homework Statement Write a java program to construct an AVL tree and then generate 100 random numbers to insert to this tree and then delete randomly 50 of these random numbers from this AVL tree. (use the AVL tree animation of your book to understand the bahavior of the this tree in the...
  2. G

    'speed' of sound vs. 'feel' of sound? (e.g. subwoofer, tree falling, etc.)

    'speed' of sound vs. 'feel' of sound? (e.g. subwoofer, tree falling, etc.) When bass plays from a subwoofer, a tree falls, a bomb explodes or something similar there's a very real physical sensation that accompanies the sound. My mind is most curious to know if these travel at the exact same...
  3. A

    Seeking advice concerning metal thickness for a tree digging spade

    Hello to all, I have a question concerning what thickness of plate steel to use for a tree spade that I'm going to have made to help with transplanting some trees. The intent is to have a spade that cuts 1/4 of a cone that is 24" in diameter and 18" deep. After cutting the tree's root ball...
  4. S

    Minimizing height of binary search tree

    Homework Statement Given a binary search tree that contains n nodes with keys 1, 2, 3, ... , n. In what order should the keys be inserted into the binary search tree to obtain a tree with minimal height? Homework Equations Binary search tree algorithm. The Attempt at a Solution...
  5. P

    Step-by-step insertion of elements into a 2-3 tree?

    Homework Statement I'm trying to figure out how to insert elements into a 2-3 tree, based on the tree shown in this image: http://imageshack.us/photo/my-images/851/btreeexercise.gif/ The two elements I need to insert at 197 and 52. 2. The attempt at a solution I'm fairly confident...
  6. L

    Christmas Tree Light: Investigating the Math Behind Its Curve

    Forgive the sloppy use of math and inability to produce an image. I noticed this last christmas. If you have a fairy light ( or perhaps any LED etc), and shine it normal to a surface, you see a circle. If you place the light flat on the surface you see a curve - to me the fairy lights' curve...
  7. C

    MHB Complexity of Algorithm to calculate number of nodes in a binary tree

    I guess this is the first question on partly CS topic in this forum. But I think you guys will be able to help me. I have an algorithm which goes as follows: int CN(struct node *node) { if(node==null) return 0; return 1 + CN(node->left) +...
  8. J

    Running Around a Tree at the Speed of Light: Can You Touch Yourself?

    Hi, I'm kind of a noob when it comes to physics so I just have to ask. Me and my friends are kind of in a pickle, so here it goes: IF you run around a tree at the speed of light, thus bending time (correct me if I'm wrong) is it possible to touch yourself in the back?
  9. F

    Age of Tree Sample: C14 Dating and Decay Rate

    Homework Statement The equilibrium concentration of C14/C12 ≈ 1.5×10−12 A 2.5 g sample of Carbon from an old tree fragment has an activity of 4.57 decays per minute. How old is the sample? Homework Equations I'm pretty sure I use A(t)=λN(0)*exp(-tλ) but I am having trouble calculating N(0)...
  10. Dembadon

    A Christmas tree made of books

    A holiday tree made of books! Here's a picture of a Holiday tree made of books on the second floor of the library at my university. I believe a few members of the student union built it, and they must've done it after closing hours (midnight) because I was there until 11:30PM and it wasn't up...
  11. F

    Comp Sci C++ Binary Search Tree preorder printing tree problem

    Q.When run the program should ask for an input file containing integer keys to be added to the search tree. The file will contain one key per line. Add these keys in the order given in the file to the search tree. Then print the entire tree using preorder traversal i.e., root, left-child...
  12. K

    What does your Christmas Tree look like?

    As the title states.
  13. P

    Tree Cutting Word Problem: Why Does the Short Tree Hit the Ground First?

    Homework Statement a tall tree and a short tree of the same mass density and width are cut at the base at the same time. why does the small tree hit the ground first? Homework Equations none. its a word problem The Attempt at a Solution gravity id pushing in different ways?
  14. D

    Medical Are the leaves on an apple tree and the sap edible? What about other plants?

    I know the seeds are mildly poisonous, but what about the leaves? What about the leaves of other trees like, orange trees, plum trees, maple trees, ground banana tree leaves, etc? If the bark of a tree is edible, does that imply that it's leaves, seeds, and sap are edible as well? Vice versa...
  15. B

    How long does it take for a cut tree to fall flat to the ground?

    I am trying to work out the time taken for a tree that has been cut at its base to fall flat to the ground. More detailed picture here ...http://i.imgur.com/RYS3D.png" The tree is not experiencing wind resistance, and is pivoting from the centre of the trees base. the tree also starts at zero...
  16. B

    Tree Branch on Wires: Discuss Strange Arc & Effect

    [url]g4ph-h7l_aM[/youtube] This is pretty old but it just crossed my mind. Wanted to share it with you guys. One question though, why is that current arc going upwards? And why did it appear at all? Can we discuss this effect?
  17. D

    Proving AVL Tree Height using -2 to 2 Balance Factor

    Homework Statement An avl tree typically balances with a balance factor of -1, 1, 0. What if the tree allows -2,-1,,0,1, 2 as a balance factor. Prove or disprove that the height of the tree is logarithmic to the number of nodes O(logn) Homework Equations Normal balanced AVL tree everyone...
  18. J

    How far does Joe fall when Anastasia falls from a tree?

    Homework Statement While exploring the canopy of the rainforest in equatorial South America, Anastasia falls from a branch 39.0 meters high. Exactly 0.8 seconds later Joe falls from the same branch. How high above the ground is Joe when Anastasia splats into the mud below? (the mud is very...
  19. A

    Need help getting formula for volume of any tree log.

    Homework Statement For calc 2 we have to write a formula using integration that will find the volume of any tree log that is cut. Using the picture that is attacked I came up with this equation. The integral from 0 to h of pi*(((R-r/h)x+r))^2)dx. Any ideas about my formula or anything would...
  20. S

    Q3:What are the probabilities of correctly identifying thornbill species?

    hi can anyone help my whit this questions :confused: Q1: Harry is an amateur birdwatcher who goes birdwatching in a region in which he knows there are only two species of thornbill – the buff-rumped thornbill and the yellow-rumped thornbill. Harry has some difficulty in differentiating...
  21. A

    Swedish moose drunkard caught by apple tree

    In its excited, and ever more inebriated hunt after fermented apples, this Swedish moose finally came to rest within the branches of a particularly inviting tree. Helped out, it fell into a stupor for some time, but then got up and staggered back home into the woods...
  22. P

    Calculating Tree Height: Using a Plane Mirror to Measure 205m

    the image of a tree just covers the length of a plane mirror 4.3 cm tall when the mirror is held 32 cm from the eye. The tree is 28 m from the mirror. What is the height of the tree? so I set up a ratio .043/.32=(28-.32)/h and solved for h and got 205 meters, but I am not sure if...
  23. AlexChandler

    A Probability tree diagram

    Homework Statement Suppose that the four inspectors at a film factory are supposed to stamp the expiration date on each package of film at the end of the assembly line. John, who stamps 20% of the packages, fails to stamp the expiration date once in every 200 packages; Tom, who stamps 60% of...
  24. M

    Help solving Tornado Tree Problem in Alabama

    Howdy from the tornado ravaged state of Alabama. We've been going out with chainsaws for days on end trying to help anyone we can. This guy wants to get this tree down so his grand children won't get hurt. What is the safest way to do this? I only have about 10 hours to figure it out. I'm...
  25. C

    What is causing the incorrect rendering of the Feigenbaum tree in C with OpenGL?

    Hello. I am attempting to render the bifurcation diagram of the logistic difference equation in C with OpenGL. I think the math behind it is simple enough, but for some reason I am ending up with a structure that resembles the tree but doesn't look quite like it. I would really appreciate it if...
  26. C

    Solve for Tree Height: tan45=h/22

    Homework Statement see attachments. Homework Equations what is the height of the tree? The Attempt at a Solution It seems that tan45=h/22 h=22*tan45 h=22m
  27. C

    Heating Element for Tree Grafting

    I need a solution for healing tree grafts. Fruit trees are often propagated in the spring by grafting (attaching) a piece of scion wood to rootstock. The graft must "heal" which means that the outer "cambium" layers of the two pieces join together. This process occurs around room temperature...
  28. ThomasMagnus

    Calculating Levels in a Geometric Series Phone Tree

    A school phone tree has 1 person responsible for contacting 3 people. If there are 1500 students in the school, how many levels will there be on the phone tree (assuming 1 person is at the top of the tree)? My Solution: This question forms a geometric series: A(first term)=1 R(common...
  29. M

    How quickly is the mass of the tree increasing?

    A tree trunk is approximated by a circular cylinder of height 50 meters and diameter 4 meters. The tree is growing taller at a rate of 4 meters per year and the diameter is increasing at a rate of 5 cm per year. The density of the wood is 4000 Kg per cubic meter. How quickly is the mass of the...
  30. H

    Does anyone still have their Christmas tree up?

    When do you plan on taking it down?:biggrin:
  31. M

    Calculating Time for Tree Falling at 45 Degrees: Homework Help

    Homework Statement A tree is cut with a 45 degree wedge to the center of the tree. The height from the base of the wedge to the top of the tree is 50 feet. The weight of the wood from the base of the wedge to the top of the tree is 500kg. Assuming there is no resistance when the tree starts...
  32. P

    Comparing Fall Times of Trees with Different Heights and Mass Densities

    Homework Statement A tall tree and a short tree (both having the same width and mass density) are cut at the base at the same time, and begin tipping over. Which tree hits the ground first? The Attempt at a Solution I think they hit at the same time because gravity pulls on both...
  33. D

    How Does ID3 Algorithm Determine the Root Node in Decision Trees?

    If this is in the wrong place please move it, i was in doubt where to post this My problem is the following I Have to create an induction tree able to calssify the attributes to this table, being y the class and A,B,C the Attributes, this tree shall be constructed from ID3 Algorithm ID3...
  34. J

    Solving Tree Diagram Problem - Exam Missed

    ok so what am i doing wrong here? this was the only question i missed on my exam, and its driving me crazy...
  35. N

    Probability Tree Problem

    Bob would like to go to either consulting or investment banking and will receive exactly one job offer in one of the industries mentioned. He thinks the probability of getting job in consulting to be 0.6 and investment baning to 0.4. He is interviewing with a small firm and a large firm for both...
  36. D

    Kinematics: Falling from a Tree

    Homework Statement While exploring the canopy of the rainforest in equatorial South America, Anastasia falls from a branch 50.0 meters high. Exactly 1.1 seconds later Joe falls from the same branch. How high above the ground is Joe when Anastasia splats into the mud below?Homework Equations...
  37. F

    Accleration problem - car strikes a tree

    Homework Statement A car traveling at 25m/s strikes a tree. The front end of the car compresses and the driver comes to rest after traveling 0.72 m. What was the average acceleration of the driver during the collision? Express the answer in terms of "g's," where 1.00g = 9.80 m/s2...
  38. Darryl

    Why is there only one Tree of Life ?

    If it is claimed that with liquid water, life will probably form, why then would there be only one tree of life on Earth where all life started ? Why is there not a forest of trees, if the conditions are favourable ? Or is it the case there there were possibly more than one and they...
  39. T

    Direction of Tree Branch Growth

    I've had some arguments after I assumed ( perhaps wrongly) that electric fields were responsible for the direction that branches grow in. In any case my inquires on this all result in the same answers. That the direction of growth is determined by light and gravity. Do all you agree with...
  40. M

    Graph Theory: a tree and it's complement proof

    Homework Statement The complement of T' of a tree T with n vertices has [(n-1)(n-2)]/2 edges, for all integers n greater than or equal to 2. Homework Equations Must prove using induction and using Lemma 18.2 which states "any tree that has more than one vertex has at least one vertex of...
  41. G

    Indoor Tree Growth: Tree Rings & Leaf Shedding

    Sorry if this is the wrong section (already posted it in the biology forum and got no response) but this question comes from a convo I had with some friends the other night.. Say you were able to grow a full size tree indoors (assuming you had the space, nessesary lighting, soil, etc..) and...
  42. F

    System head curve for tree piping system

    as we know to draw the system curve of a piping system we have to change the value of Q total and get a head for each value we put in the following equation : H=Hstatic +Kq^2 where K is the sum of major and minor losses. what if we have a piping system that have many branches "tree -system"...
  43. G

    Can indoor-grown trees form tree rings without experiencing a winter season?

    Sorry if this is the wrong section but this question comes from a convo I had with some friends the other night.. Say you were able to grow a full size tree indoors (assuming you had the space, nessesary lighting, soil, etc..) and kept it under 18 hours of light and 6 hours of dark...
  44. H

    MATLAB Creating a Basic Fractal Tree Function in Matlab | Fixing Branch Placement

    So I'm creating a very basic fractal tree function in matlab. The function is supposed to create a fractal tree where each branch comes out at 90 degrees so it looks like a bunch of T's just put together. Currentley I am running into the problem where I can not get the branches to plot in the...
  45. K

    Maximum Drawdown (Binomial tree)

    Imagine there is a game and a gambler has a prob. of P1 in winning one unit of capital in a trial and 1 - P1 in lossing one unit. He wants to know the prob. of HAVING EVER lost more than or equal to a threshold no. of units (drawdown threshold) at or before the end of a number of trials...
  46. B

    Printing a Binary Tree: Solving the Space Issue

    Hi, would you mind helping me in solving this problem? Because I stuck now. The problem is to print a space in a binary tree (not binary search tree) my current program can only output without appropriate spacing so if input is : 4 7 8 9 2 0 3 1 5 the output will become 4 7 8 9 2 0 3 1...
  47. Y

    Truck vs Tree (first week physics woes)

    1. The driver of a truck slams on the brakes when he sees a tree blocking the road. The truck slows down uniformly with an acceleration of -5.60 m/s2 for 4.20s making skid marks 62.4m long that end at the tree. With what speed does the truck strike the tree? Homework Equations I'm guessing that...
  48. N

    Calculate Time Until Tree is Hit: 9m Away, 18m/s Velocity

    Homework Statement - ball is thrown with a horizontal velocity of 18 m/s directly toward a tree - person who threw the ball is 1.5 m above the ground and 9 m away from the tree looking for time it takes to hit the tree, what height the ball hits the tree at, and the balls velocity when it...
  49. F

    Car hitting a tree - calculating the force?

    So a car hits a tree. F=ma So let's say it was driving at 90 km/h = 25 m/s, and after the crash let's say its speed was 0 m/s. a=v-v0/t But how could I calculate the t? This is not a homework question. Thanks in advance, fawk3s
  50. L

    Minimum Spanning Tree - Algorithm

    Homework Statement Suppose a weighted connected graph G = (V,E) has n edges. Describe an algorithm to find a Minimum Spanning Tree of G in O(n) time. Prove the correctness of your answer. (Here n = |V |). Homework Equations I know about DFS, BFS, Prims algorithm The Attempt at a...
Back
Top