SlideShare a Scribd company logo
1 of 28
1
PROBABILITY DISTRIBUTIONS
R. BEHBOUDI
Triangular Probability Distribution
The triangular probability distribution (also called: “a lack of
knowledge distribution”) is a
simplistic continuous model that is mainly used in situations
when there is only limited sample
data and information about a population. It is based on the
knowledge of a minimum (a lower
value), a maximum (an upper value), and a mode (peak)
between those two values. For this
reason, this distribution is very popular in simulation processes
related to business decision
models, project management models, financial models, and for
modeling noises in digital audio
and video data.
The probability density function (���) of the triangular
random variable � is given by:
�(�) = {
�
(�−�)(�−�)
(� − �) �� � ≤ �
�
(�−�)(�−�)
(� − �) �� � > �
(1)
The following are some of the important numerical
characteristics of the triangular distribution:
2
PROBABILITY DISTRIBUTIONS
R. BEHBOUDI
���� = �(�) = � =
�+�+�
�
(2)
������ = � =
{
� + √�.� (� − �)(� − �) �� � <
�+�
�
� �� � =
�+�
�
� − √�.� (� − �)(� − �) �� � ≥
�+�
�
(3)
�������� = �� =
��+��+��−��−��−��
��
(4)
The ��� (Cumulative density function) �(� ≤ �) of the
triangular random variable is:
�(�) =
{
�
(�−�)(�−�)
(� − �)� �� � < �
�−�
�−�
�� � = �
� −
�
(�−�)(�−�)
(� − �)� �� � > �
(5)
For example, the following is a display of the cumulative
density function of a triangular random variable
with a minimum value of 2, a maximum of 8, and with a peak at
4.
3
PROBABILITY DISTRIBUTIONS
R. BEHBOUDI
Random Number Generation of Triangular Random Variables:
The CDF expression given by formula (5) can be used to
generate random values according to a specific
triangular distribution. In this method, first a standard uniform
random value � is created. This value is
then used as a cumulative probability and replaces �(�) in
formula (5). The formula is then solved for
the random variable �. The following rule describes this
random number generation:
� = {
� + √� (� − �)(� − �) �� � ≤
�−�
�−�
� − √(� − �)(� − �)(� − �) �� � >
�−�
�−�
(6)
Example:
In this example, we will simulate ten million triangular random
values in R. We will then compare the
numerical characteristics of this randomly generated set with
the expected values.
1. Specify the specification of the triangular distribution:
> a<-2
> b<-8
> c<-4
2. Generate ten-million random values according to the standard
uniform distribution:
> N<-10^7
> r2<-runif(N)
3. Implement formula (6) to generate ten million triangular
random values (labeled as x2):
> A<-a+sqrt((b-a)*(c-a)*r2)
> B<-b-sqrt((b-a)*(b-c)*(1-r2))
> C<-(c-a)/(b-a)
> x2<-ifelse(r2<C,A,B)
4. Create a relative frequency histogram along with the plot of
the density function of the simulated
values:
> hist(x2,freq=F,main="Distribution of the Simulation")
> lines(density(x2),lwd=2,col="red")
4
PROBABILITY DISTRIBUTIONS
R. BEHBOUDI
5. We will now compare the observed and the theoretical
numerical characteristics of data:
> mean(x2)
[1] 4.666847
> (a+b+c)/3
[1] 4.666667
> median(x2)
[1] 4.536229
> ifelse(c<(a+b)/2,a+sqrt((b-a)*(c-a)/2), b-sqrt((b-a)*(b-c)/2))
[1] 4.44949
> sd(x2)
[1] 1.24714
> sqrt((a^2+b^2+c^2-a*b-a*c-b*c)/18)
[1] 1.247219
6. In fact, we can create a custom function in R that will allow
for calculating the triangular cumulative
probabilities:
ptriangular<-function(x,a,b,c) {
KK<-(1/((b-a)*(c-a)))*(x-a)^2
PP<-1-(1/((b-a)*(b-c)))*(b-x)^2
prob<-ifelse(x<c,KK,PP)
return(prob)
}
5
PROBABILITY DISTRIBUTIONS
R. BEHBOUDI
For example, suppose that we wish to calculate �(� > �). First
observe that:
�(� > �) = � − �(� ≤ �),
And then use the “ptriangular()” function to calculate the above
probability:
> 1-ptriangular(5,2,8,4)
[1] 0.375
7. We can also create a custom function in R that will handle
the inverse problems; i.e., problems in
which a cumulative probability (P) is used to calculate the
corresponding value (q) of the triangular
random variable:
qtriangular<-function(p,a,b,c) {
QQ<-a+sqrt((b-a)*(c-a)*p)
qq<-b-sqrt((b-a)*(b-c)*(1-p))
q<-ifelse(p<(c-a)/(b-a),QQ,qq)
return(q)
}
For example, the 95th percentile of the triangular distribution of
our example can be determined as
follows:
> qtriangular(0.95,2,8,4)
[1] 6.904555
Note that the “qtriangular()” function as defined above can also
be used for the random number
generation. The following code will generate 1000 triangular
random values according to the triangular
distribution of our example:
> x<-qtriangular(runif(1000),2,8,4)
DecisionMaking
OverviewandRationale
Thisassignmentisdesignedtoprovidethestudentswithhands-
onexperiencesin
performingwhat-
ifscenariosandoptimizationtechniques.Youareprovidedwitha
businessscenarioandyouareaskedtocreateamodelfordecisionsmak
ing.Thenyouare
askedtouseoptimizationtechniquestooptimizetheefficiencyofyour
model.
ReadthescenarioprovidedintheDecisionMakingassignmentdocum
ent.CompletePart1
inExcel.UseRtocompletePart2.Finally,writeareportwithyourfindi
ngs.Besureto
answerallquestionspresentedintheassignmentdocument.
CourseOutcomes
Thisassignmentisdirectlylinkedtothefollowingkeylearningoutco
mesfromthecourse
syllabus:
CO1:Usedescriptive,Heuristicandprescriptiveanalysistodrivebusi
nessstrategies
andactions
CO4:Utilizeappliedanalyticsanddefinitionsofmeasuresofsuccesst
oprovidea
strategicanalyticroadmapforanorganization.
CO5:Incorporategeneralindustrypracticesinend-to-
endanalyticsdevelopment
cycles,including,dataengineering,analyticsmodeling,optimizatio
n,(e.g.risk
minimization)andstrategicdevelopment;
AssignmentSummary
AnInventoryManagementDecisionModel
Inventoriesrepresentaconsiderableinvestmentforeveryorganizatio
n;thus,itis
importantthattheybemanagedwell.Excessinventoriescanindicatep
oorfinancialand
operationalmanagement.Ontheotherhand,nothavinginventorywhe
nitisneededcan
alsoresultinbusinessfailure.Thetwobasicinventorydecisionsthatm
anagersfaceare
howmuchtoorderorproduceforadditionalinventory,andwhentoord
erorproduceitto
minimizetotalinventorycost,whichconsistsofthecostofholdinginv
entoryandthecost
oforderingitfromthesupplier.
Holdingcosts,orcarryingcosts,representcostsassociatedwithmaint
aininginventory.
Thesecostsincludeinterestincurredortheopportunitycostofhavingc
apitaltiedupin
inventories;storagecostssuchasinsurance,taxes,rentalfees,utilitie
s,andother
maintenancecostsofstoragespace;warehousingorstorageoperation
costs,including
handling,recordkeeping,informationprocessing,andactualphysica
linventoryexpenses;
andcostsassociatedwithdeterioration,shrinkage,obsolescence,and
damage.Total
holdingcostsaredependentonhowmanyitemsarestoredandforhowl
ongtheyare
stored.Therefore,holdingcostsareexpressedintermsofdollarsassoc
iatedwithcarrying
oneunitofinventoryforoneunitoftime.
Orderingcostsrepresentcostsassociatedwithreplenishinginventori
es.Thesecostsarenot
dependentonhowmanyitemsareorderedatatime,butonthenumberof
ordersthatare
prepared.Orderingcostsincludeoverhead,clericalwork,dataproces
sing,andother
expensesthatareincurredinsearchingforsupplysources,aswellasco
stsassociatedwith
purchasing,expediting,transporting,receiving,andinspecting.Itist
ypicaltoassumethat
theorderingcostisconstantandisexpressedintermsofdollarsperorde
r.
Foramanufacturingcompanythatyouareconsultingfor,managersar
eunsureabout
makinginventorydecisionsassociatedwithakeyenginecomponent.
Theannualdemand
isestimatedtobe20,000unitsandisassumedtobeconstantthroughout
theyear.Each
unitcosts$90.Thecompany’saccountingdepartmentestimatesthatit
sopportunitycost
forholdingthisiteminstockforoneyearis15%oftheunitvalue.Eacho
rderplacedwith
thesuppliercosts$195.Thecompany’spolicytoorderwheneverthein
ventorylevel
reachesapredeterminedreorderpointthatprovidessufficientstockto
meetdemanduntil
thesupplier’sordercanbeshippedandreceived;andthentoordertwic
easmanyunits.
PartI
PartIshouldbecompletedinExcel.RscriptsarenotacceptedforpartI.
Asaconsultant,yourtaskistodevelopandimplementadecisionmodel
tohelpthem
arriveatthebestdecision.Asaguide,considerthefollowing:
1.
Definethedata,uncontrollableinputs,modelparameters,andthedeci
sionvariables
thatinfluencethetotalinventorycost.
2.
Developmathematicalfunctionsthatcomputetheannualorderingcos
tandannual
holdingcostbasedonaverageinventoryheldthroughouttheyear,and
usethemto
developamathematicalmodelforthetotalinventorycost.
3.
ImplementyourmodelonanExcelspreadsheet.Rscriptfilesarenotac
cepted.
4.
Usedatatablestofindanapproximateorderquantitythatresultsinthes
mallest
totalcost.
5. PlottheTotalCostversustheOrderQuantity
6. UsetheExcelSolvertoverifyyourresultofpart4above.
7. Conductwhat-ifanalysesbyusingtwo-
waytablesinExceltostudythesensitivityof
totalcosttochangesinthemodelparameters.
8.
Intheworddocument,explainyourresultsandanalysistothevicepresi
dentof
operations.
PartII
ThispartmustbecompletedinR.IncaseRhasbeenusedforthispart,the
assignmentwill
consistof3submissions:
• Theworddocument,
• TheExcelworkbookforpartI,
• TheRscriptfile(withextension“.R”)ofpartII.
Assumethatallproblemparametershavethesamevaluesasthoseinpa
rtI,butthatthe
annualdemandhasatriangularprobabilitydistributionbetween1500
0and25000units
withapeakof20000units.
1.
Performasimulationconsistingof30occurrences,andcalculatethem
inimumtotal
costforeachoccurrence.IfusingR,performasimulationconsistingof
1000
occurrences,andcalculatetheminimumtotalcostforeachoccurrence
.
2.
Determinetheprobabilitydistributionthatbestfitstheminimumtotal
cost.
3.
Determinetheprobabilitydistributionthatbestfitstheorderquantity.
4.
Determineaprobabilitydistributionthatbestfitstheannualnumberof
orders.
5.
Intheworddocument,explainyourresultsandanalysistothevicepresi
dentof
operations.
Format&Guidelines
Submissionsshouldconsistof3files;anExcelworkbook,andRfilean
daWorddocument:
• Theworddocument,
• TheExcelworkbookforpartI,
• TheRscriptfile(withextension“.R”)ofpartII.
Thereportshouldfollowthefollowingformat:
(i) Introduction
(ii) Analysis
(iii) Conclusion
Andbe1000-
1200wordsinlength,notincludingthetitlepage,andpresentedintheA
PA
format.
Rubric
Category ExceedsStandard MeetsStandards
Approaching
Standards
BelowStandards
ExcelandR:
Problem
Modeling&
Set-up
ALY6050-CO1
ALY6050-C05
Completelyand
conciselymodeled
theprobleminExcel
(orR)foreach
method
Accuratelymodeled
theprobleminExcel
(orR)foreach
method
Correctlymodeled
theprobleminExcel
(orR)foreach
method,butthe
modellacksdetailed
insightintothe
problemortheset-
upisawkward.
Modeledtheproblem
inExcel(orR)for
eachmethod,but
therearesomegaps
intheproblem
modelingandsetup
ExcelandR:
Problem
Solution
&
Accuracy
ALY6050-CO4
ALY6050-CO5
Efficientlyobtained
correctandaccurate
solutionsinExcel(or
R)byusingthe
appropriateanalytic
toolsofthesoftware
Obtainedcomplete
andaccurate
solutionsinExcel(or
R)byusingthe
appropriateanalytic
toolsofthesoftware
Obtainedcorrect
solutionsinExcel(or
R)usingthe
appropriateanalytic
toolsofthesoftware,
buttheapplicationof
thetoolisawkward.
Obtainedsolutionsin
Excel(orR)byusing
theappropriate
analytictoolsofthe
software,butthe
solutionisnot
complete.
Word/Report:
Problem
Description&
Introduction
ALY6050_CO5
Providesathorough
andconcisesummary
oftheproblem
descriptionsand
introducedthe
problemusingrich
andsignificantideas
Providesanaccurate
andsuccinct
summaryofthe
problemdescriptions
andproblem
introduction
Providesanaccurate
summaryofthe
problemdescriptions
andproblem
introduction,butthe
descriptionistoo
wordyornot
succinct
Providedasummary
oftheproblem
descriptionsand
problem
introduction,butitis
inaccurateor
incomplete
Word/Report:
Descriptionof
Problem
Analysis
ALU6050_CO4
ALY6050_CO5
Providesathorough
andprecise
descriptionofthe
analyticconceptsand
theoriesusedin
analyzingthe
problem
Accuratelydescribes
theanalyticconcepts
andtheoriesusedin
analyzingthe
problem
Describesthe
analyticconceptsand
theoriesusedin
analyzingthe
problem,but
descriptionlacks
appropriatedetailor
precision
Describesthe
analyticalconcepts
andtheoriesusedin
analyzingthe
problem,but
descriptionsare
incorrectorthe
analyticalconcepts
andtheoriesare
incorrect
Word/Report:
Descriptionof
Conclusions
ALY6050_CO4
Providesconclusions
andresultsobtained
intheprojectusinga
highlevelofcritical
thinkingand
reasoning
Providesrelevant
conclusionsand
resultsobtainedin
theprojectthat
reflectcritical
thinkingand
reasoning
Providesconclusions
andresultsobtained
intheproject,butnot
allconclusionsor
resultsarerelevant
totheproblemornot
Providesconclusions
andresultsobtained
intheproject,but
theyareirrelevant
andreflectalackof
criticalthinking
Category ExceedsStandard MeetsStandards
Approaching
Standards
BelowStandards
allconclusionsreflect
goodreasoning
Word/Report:
Writing
Mechanics,
TitlePage,&
References
Completelyfreeof
errorsingrammar,
spelling,and
punctuation;and
completelycorrect
usageoftitlepage,
citations,and
references.The
reportcontainsa
minimumof1000
words
Thereareno
noticeableerrorsin
grammar,spelling,
andpunctuation;and
completelycorrect
usageoftitlepage,
citations,and
references.The
reportcontainsa
minimumof1000
words
Thereareveryfew
errorsingrammar,
spelling,and
punctuation;and
completelycorrect
usageoftitlepage,
citations,and
references.The
reportcontainsa
minimumof1000
words
Therearemorethan
fiveerrorsin
grammar,spelling,
andpunctuation;or
theusageoftitle
page,citations,and
referencesare
incomplete;orthe
reportcontainsless
than1000words
1  PROBABILITY DISTRIBUTIONS R. BEHBOUDI Triangu.docx

More Related Content

Similar to 1 PROBABILITY DISTRIBUTIONS R. BEHBOUDI Triangu.docx

R programming intro with examples
R programming intro with examplesR programming intro with examples
R programming intro with examplesDennis
 
Matlab polynimials and curve fitting
Matlab polynimials and curve fittingMatlab polynimials and curve fitting
Matlab polynimials and curve fittingAmeen San
 
ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)CrackDSE
 
Applied numerical methods lec10
Applied numerical methods lec10Applied numerical methods lec10
Applied numerical methods lec10Yasser Ahmed
 
MT T4 (Bab 3: Fungsi Kuadratik)
MT T4 (Bab 3: Fungsi Kuadratik)MT T4 (Bab 3: Fungsi Kuadratik)
MT T4 (Bab 3: Fungsi Kuadratik)hasnulslides
 
Econometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualEconometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualLewisSimmonss
 
Spanos lecture+3-6334-estimation
Spanos lecture+3-6334-estimationSpanos lecture+3-6334-estimation
Spanos lecture+3-6334-estimationjemille6
 
Ch 56669 Slides.doc.2234322344443222222344
Ch 56669 Slides.doc.2234322344443222222344Ch 56669 Slides.doc.2234322344443222222344
Ch 56669 Slides.doc.2234322344443222222344ohenebabismark508
 
Comparison of image segmentation
Comparison of image segmentationComparison of image segmentation
Comparison of image segmentationHaitham Ahmed
 
Principal Components Analysis, Calculation and Visualization
Principal Components Analysis, Calculation and VisualizationPrincipal Components Analysis, Calculation and Visualization
Principal Components Analysis, Calculation and VisualizationMarjan Sterjev
 
Digital electronics k map comparators and their function
Digital electronics k map comparators and their functionDigital electronics k map comparators and their function
Digital electronics k map comparators and their functionkumarankit06875
 

Similar to 1 PROBABILITY DISTRIBUTIONS R. BEHBOUDI Triangu.docx (20)

R programming intro with examples
R programming intro with examplesR programming intro with examples
R programming intro with examples
 
R code for data manipulation
R code for data manipulationR code for data manipulation
R code for data manipulation
 
R code for data manipulation
R code for data manipulationR code for data manipulation
R code for data manipulation
 
Matlab polynimials and curve fitting
Matlab polynimials and curve fittingMatlab polynimials and curve fitting
Matlab polynimials and curve fitting
 
Survey Demo
Survey DemoSurvey Demo
Survey Demo
 
ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)ISI MSQE Entrance Question Paper (2013)
ISI MSQE Entrance Question Paper (2013)
 
Principal component analysis
Principal component analysisPrincipal component analysis
Principal component analysis
 
Applied numerical methods lec10
Applied numerical methods lec10Applied numerical methods lec10
Applied numerical methods lec10
 
MT T4 (Bab 3: Fungsi Kuadratik)
MT T4 (Bab 3: Fungsi Kuadratik)MT T4 (Bab 3: Fungsi Kuadratik)
MT T4 (Bab 3: Fungsi Kuadratik)
 
Signals and Systems Homework Help.pptx
Signals and Systems Homework Help.pptxSignals and Systems Homework Help.pptx
Signals and Systems Homework Help.pptx
 
2 simple regression
2   simple regression2   simple regression
2 simple regression
 
Econometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualEconometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions Manual
 
Spanos lecture+3-6334-estimation
Spanos lecture+3-6334-estimationSpanos lecture+3-6334-estimation
Spanos lecture+3-6334-estimation
 
Ch 56669 Slides.doc.2234322344443222222344
Ch 56669 Slides.doc.2234322344443222222344Ch 56669 Slides.doc.2234322344443222222344
Ch 56669 Slides.doc.2234322344443222222344
 
Steven Duplij, "Polyadic rings of p-adic integers"
Steven Duplij, "Polyadic rings of p-adic integers"Steven Duplij, "Polyadic rings of p-adic integers"
Steven Duplij, "Polyadic rings of p-adic integers"
 
Comparison of image segmentation
Comparison of image segmentationComparison of image segmentation
Comparison of image segmentation
 
Principal Components Analysis, Calculation and Visualization
Principal Components Analysis, Calculation and VisualizationPrincipal Components Analysis, Calculation and Visualization
Principal Components Analysis, Calculation and Visualization
 
wzhu_paper
wzhu_paperwzhu_paper
wzhu_paper
 
Introduction to MATLAB
Introduction to MATLABIntroduction to MATLAB
Introduction to MATLAB
 
Digital electronics k map comparators and their function
Digital electronics k map comparators and their functionDigital electronics k map comparators and their function
Digital electronics k map comparators and their function
 

More from aulasnilda

1. Analyze the case and determine the factors that have made KFC a s.docx
1. Analyze the case and determine the factors that have made KFC a s.docx1. Analyze the case and determine the factors that have made KFC a s.docx
1. Analyze the case and determine the factors that have made KFC a s.docxaulasnilda
 
1. A.Discuss how the concept of health has changed over time. B.Di.docx
1. A.Discuss how the concept of health has changed over time. B.Di.docx1. A.Discuss how the concept of health has changed over time. B.Di.docx
1. A.Discuss how the concept of health has changed over time. B.Di.docxaulasnilda
 
1. Abstract2. Introduction to Bitcoin and Ethereum3..docx
1. Abstract2. Introduction to Bitcoin and Ethereum3..docx1. Abstract2. Introduction to Bitcoin and Ethereum3..docx
1. Abstract2. Introduction to Bitcoin and Ethereum3..docxaulasnilda
 
1. A. Compare vulnerable populations. B. Describe an example of one .docx
1. A. Compare vulnerable populations. B. Describe an example of one .docx1. A. Compare vulnerable populations. B. Describe an example of one .docx
1. A. Compare vulnerable populations. B. Describe an example of one .docxaulasnilda
 
1. A highly capable brick and mortar electronics retailer with a l.docx
1. A highly capable brick and mortar electronics retailer with a l.docx1. A highly capable brick and mortar electronics retailer with a l.docx
1. A highly capable brick and mortar electronics retailer with a l.docxaulasnilda
 
1. A. Research the delivery, finance, management, and sustainabili.docx
1. A. Research the delivery, finance, management, and sustainabili.docx1. A. Research the delivery, finance, management, and sustainabili.docx
1. A. Research the delivery, finance, management, and sustainabili.docxaulasnilda
 
1. All of the following artists except for ONE used nudity as part.docx
1. All of the following artists except for ONE used nudity as part.docx1. All of the following artists except for ONE used nudity as part.docx
1. All of the following artists except for ONE used nudity as part.docxaulasnilda
 
1. According to the article, what is myth and how does it functi.docx
1. According to the article, what is myth and how does it functi.docx1. According to the article, what is myth and how does it functi.docx
1. According to the article, what is myth and how does it functi.docxaulasnilda
 
1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx
1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx
1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docxaulasnilda
 
1. A.Compare independent variables, B.dependent variables, and C.ext.docx
1. A.Compare independent variables, B.dependent variables, and C.ext.docx1. A.Compare independent variables, B.dependent variables, and C.ext.docx
1. A.Compare independent variables, B.dependent variables, and C.ext.docxaulasnilda
 
1. According to the Court, why is death a proportionate penalty for .docx
1. According to the Court, why is death a proportionate penalty for .docx1. According to the Court, why is death a proportionate penalty for .docx
1. According to the Court, why is death a proportionate penalty for .docxaulasnilda
 
1- Prisonization  What if  . . . you were sentenced to prison .docx
1- Prisonization  What if  . . . you were sentenced to prison .docx1- Prisonization  What if  . . . you were sentenced to prison .docx
1- Prisonization  What if  . . . you were sentenced to prison .docxaulasnilda
 
1. 250+ word count What is cultural and linguistic competence H.docx
1. 250+ word count What is cultural and linguistic competence H.docx1. 250+ word count What is cultural and linguistic competence H.docx
1. 250+ word count What is cultural and linguistic competence H.docxaulasnilda
 
1. 200 words How valuable is a having a LinkedIn profile Provid.docx
1. 200 words How valuable is a having a LinkedIn profile Provid.docx1. 200 words How valuable is a having a LinkedIn profile Provid.docx
1. 200 words How valuable is a having a LinkedIn profile Provid.docxaulasnilda
 
1. According to recent surveys, China, India, and the Philippines ar.docx
1. According to recent surveys, China, India, and the Philippines ar.docx1. According to recent surveys, China, India, and the Philippines ar.docx
1. According to recent surveys, China, India, and the Philippines ar.docxaulasnilda
 
1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx
1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx
1. Addressing inflation using Fiscal and Monetary Policy tools.S.docxaulasnilda
 
1. A vulnerability refers to a known weakness of an asset (resou.docx
1. A vulnerability refers to a known weakness of an asset (resou.docx1. A vulnerability refers to a known weakness of an asset (resou.docx
1. A vulnerability refers to a known weakness of an asset (resou.docxaulasnilda
 
1. According to the readings, philosophy began in ancient Egypt an.docx
1. According to the readings, philosophy began in ancient Egypt an.docx1. According to the readings, philosophy began in ancient Egypt an.docx
1. According to the readings, philosophy began in ancient Egypt an.docxaulasnilda
 
1-Explain what you understood from the paper with (one paragraph).docx
1-Explain what you understood from the paper with (one paragraph).docx1-Explain what you understood from the paper with (one paragraph).docx
1-Explain what you understood from the paper with (one paragraph).docxaulasnilda
 
1-Explanation of how healthcare policy can impact the advanced p.docx
1-Explanation of how healthcare policy can impact the advanced p.docx1-Explanation of how healthcare policy can impact the advanced p.docx
1-Explanation of how healthcare policy can impact the advanced p.docxaulasnilda
 

More from aulasnilda (20)

1. Analyze the case and determine the factors that have made KFC a s.docx
1. Analyze the case and determine the factors that have made KFC a s.docx1. Analyze the case and determine the factors that have made KFC a s.docx
1. Analyze the case and determine the factors that have made KFC a s.docx
 
1. A.Discuss how the concept of health has changed over time. B.Di.docx
1. A.Discuss how the concept of health has changed over time. B.Di.docx1. A.Discuss how the concept of health has changed over time. B.Di.docx
1. A.Discuss how the concept of health has changed over time. B.Di.docx
 
1. Abstract2. Introduction to Bitcoin and Ethereum3..docx
1. Abstract2. Introduction to Bitcoin and Ethereum3..docx1. Abstract2. Introduction to Bitcoin and Ethereum3..docx
1. Abstract2. Introduction to Bitcoin and Ethereum3..docx
 
1. A. Compare vulnerable populations. B. Describe an example of one .docx
1. A. Compare vulnerable populations. B. Describe an example of one .docx1. A. Compare vulnerable populations. B. Describe an example of one .docx
1. A. Compare vulnerable populations. B. Describe an example of one .docx
 
1. A highly capable brick and mortar electronics retailer with a l.docx
1. A highly capable brick and mortar electronics retailer with a l.docx1. A highly capable brick and mortar electronics retailer with a l.docx
1. A highly capable brick and mortar electronics retailer with a l.docx
 
1. A. Research the delivery, finance, management, and sustainabili.docx
1. A. Research the delivery, finance, management, and sustainabili.docx1. A. Research the delivery, finance, management, and sustainabili.docx
1. A. Research the delivery, finance, management, and sustainabili.docx
 
1. All of the following artists except for ONE used nudity as part.docx
1. All of the following artists except for ONE used nudity as part.docx1. All of the following artists except for ONE used nudity as part.docx
1. All of the following artists except for ONE used nudity as part.docx
 
1. According to the article, what is myth and how does it functi.docx
1. According to the article, what is myth and how does it functi.docx1. According to the article, what is myth and how does it functi.docx
1. According to the article, what is myth and how does it functi.docx
 
1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx
1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx
1. 6 Paragraph OverviewReflection on Reading Assigbnment Due Before.docx
 
1. A.Compare independent variables, B.dependent variables, and C.ext.docx
1. A.Compare independent variables, B.dependent variables, and C.ext.docx1. A.Compare independent variables, B.dependent variables, and C.ext.docx
1. A.Compare independent variables, B.dependent variables, and C.ext.docx
 
1. According to the Court, why is death a proportionate penalty for .docx
1. According to the Court, why is death a proportionate penalty for .docx1. According to the Court, why is death a proportionate penalty for .docx
1. According to the Court, why is death a proportionate penalty for .docx
 
1- Prisonization  What if  . . . you were sentenced to prison .docx
1- Prisonization  What if  . . . you were sentenced to prison .docx1- Prisonization  What if  . . . you were sentenced to prison .docx
1- Prisonization  What if  . . . you were sentenced to prison .docx
 
1. 250+ word count What is cultural and linguistic competence H.docx
1. 250+ word count What is cultural and linguistic competence H.docx1. 250+ word count What is cultural and linguistic competence H.docx
1. 250+ word count What is cultural and linguistic competence H.docx
 
1. 200 words How valuable is a having a LinkedIn profile Provid.docx
1. 200 words How valuable is a having a LinkedIn profile Provid.docx1. 200 words How valuable is a having a LinkedIn profile Provid.docx
1. 200 words How valuable is a having a LinkedIn profile Provid.docx
 
1. According to recent surveys, China, India, and the Philippines ar.docx
1. According to recent surveys, China, India, and the Philippines ar.docx1. According to recent surveys, China, India, and the Philippines ar.docx
1. According to recent surveys, China, India, and the Philippines ar.docx
 
1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx
1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx
1. Addressing inflation using Fiscal and Monetary Policy tools.S.docx
 
1. A vulnerability refers to a known weakness of an asset (resou.docx
1. A vulnerability refers to a known weakness of an asset (resou.docx1. A vulnerability refers to a known weakness of an asset (resou.docx
1. A vulnerability refers to a known weakness of an asset (resou.docx
 
1. According to the readings, philosophy began in ancient Egypt an.docx
1. According to the readings, philosophy began in ancient Egypt an.docx1. According to the readings, philosophy began in ancient Egypt an.docx
1. According to the readings, philosophy began in ancient Egypt an.docx
 
1-Explain what you understood from the paper with (one paragraph).docx
1-Explain what you understood from the paper with (one paragraph).docx1-Explain what you understood from the paper with (one paragraph).docx
1-Explain what you understood from the paper with (one paragraph).docx
 
1-Explanation of how healthcare policy can impact the advanced p.docx
1-Explanation of how healthcare policy can impact the advanced p.docx1-Explanation of how healthcare policy can impact the advanced p.docx
1-Explanation of how healthcare policy can impact the advanced p.docx
 

Recently uploaded

URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 

Recently uploaded (20)

URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 

1 PROBABILITY DISTRIBUTIONS R. BEHBOUDI Triangu.docx