answersLogoWhite

0


Best Answer

A conditional statement is much like the transitive property in geometry, meaning if:

P>Q and ~N>P then you can conclude: if ~N>Q

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Definition of conditional statement in geometry?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an easy conditional statement that relates to geometry?

If the diagonals of a parallelogram are congruent then the parallelogram is a rectangle.


What is the mathematical definition of inverse?

A manipulation of a conditional statement where the hypothesis and the conclusion are switched and negated.


What can a conditional statement have?

A conditional statement uses the words if... Then


What is the law of modus tollens?

It in Math, (Geometry) If p implies q is a true conditional statement and not q is true, then not p is true.


Also known as the if then statement?

Another name for that is the conditional statement.


What are the kinds of conditional statement in foxpro with syntax?

The conditional statement in foxpro is DID YOU GET IT


What is an example of a geometry converse statement?

Conditional: If an angle is a straight angle, then its measurement is 180°.Converse: If the measure of an angle is 180°, then it is a straight angle.


What is the definition for a conditional statement?

In computer science, conditional statements, conditional expressions and conditional constructsare features of a programming language which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.


What type of statement uses if a then b?

Hypothesis followed by a conclusion is called an If-then statement or a conditional statement.


What is a conjunction of a conditional statement and its converse?

A biconditional is the conjunction of a conditional statement and its converse.


What is the conjunction of a conditional statement and its converse?

A biconditional is the conjunction of a conditional statement and its converse.


Conditional statement inside a conditional loop?

int i = 100; while(i > 0) { // Conditional loop --i; if((i % 2) == 0) { // Conditional statement inside a conditional loop System.out.println(i + " is even."); } }