I have a 4 inputs/variables in which 3 of them are boolean values and 1 is a time value. I want to model a function which gives the quality of a system based on those inputs.For eg if all 3 booleans are 1 and the time is 5 sec(assume it to be the perfect time) the function should give an output of 1 and if all 3 booleans are 0 and the time is 0 sec(assume it to be the worst time) , the function should give an output of 0. And it should give a value between 0 and 1 depending on all other possible values of the 3 booleans and the time variable between 0 and 5 sec which represents the quality of my system.How can I start modelling this kind of a function? Any hints would be really helpfull.Thanks.
2026-03-31 18:20:52.1774981252
How to make a mathematical model/function which outputs a value between 0 and 1 depending on the input variables?
169 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in FUNCTIONS
- Functions - confusion regarding properties, as per example in wiki
- Composition of functions - properties
- Finding Range from Domain
- Why is surjectivity defined using $\exists$ rather than $\exists !$
- What are the functions satisfying $f\left(2\sum_{i=0}^{\infty}\frac{a_i}{3^i}\right)=\sum_{i=0}^{\infty}\frac{a_i}{2^i}$
- Lower bound of bounded functions.
- Does there exist any relationship between non-constant $N$-Exhaustible function and differentiability?
- Given a function, prove that it's injective
- Surjective function proof
- How to find image of a function
Related Questions in BOOLEAN-ALGEBRA
- What is (mathematically) minimal computer architecture to run any software
- Put $f(A,B,C) = A+B'C$ in $Σ$ $\pi$ notation
- Definition of Boolean subalgebra
- Steps to simplify this boolean expression
- When a lattice is a lattice of open sets of some topological space?
- Boolean Algebra with decomposition property
- Simplify $(P \wedge Q \wedge R)\vee(\neg P\wedge Q\wedge\neg R)\vee(\neg P\wedge\neg Q\wedge R)\vee(\neg P \wedge\neg Q\wedge\neg R)$
- $B$ countable boolean algebra then St(B) separable.
- Who is the truth teller (logic puzzle)
- How to prove this Boolean expression?
Related Questions in MATHEMATICAL-MODELING
- Does Planck length contradict math?
- Solving the heat equation with robin boundary conditions
- How to use homogeneous coordinates and the projective plane to study the intersection of two lines
- inhomogeneous coordinates to homogeneous coordinates
- Writing Differential equations to describe a system
- Show that $z''+F(z') + z=0$ has a unique, stable periodic solution.
- Similar mathematic exercises about mathematical model
- What are common parameters to use when using Makeham's Law to model mortality in the real world?
- How do I scale my parabolas so that their integrals over [0,1] are always the same?
- Retrain of a neural network
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Here is a first model:
$$(B_1,B_2,B_3,T)\mapsto (B_1*4+B_2*2+B_3)/8+T/40$$
(a combination of base 2 computation (with max. value 7/8) + a normalized real (max value 1/8).
In this case, the maximum value is
$$\begin{cases}0 & \text{if} & B_1=0,B_2=0,B_3=0,T=0\\1 & \text{if} & B_1=1, B_2=1,B_3=1,T=5\end{cases}$$
This meet your requirements... upside down.
Thus, let us take the "complement to 1":
$$(B_1,B_2,B_3,T)\mapsto 1-((B_1*4+B_2*2+B_3)/8+T/40)$$
Of course, the relative weighing of the boolean group wrt the time variable can be modified, instead of taking $7/8 vs. 1/8$ it can be $1/2 vs. 1/2$ under the form:
$$(B_1,B_2,B_3,T)\mapsto 1-((B_1*4+B_2*2+B_3)/14+T/10)$$